Lib tweaks
Some checks failed
CI / Typos (pull_request) Successful in 11s
CI / Typst formatting (pull_request) Failing after 5s
CI / Build (pull_request) Has been skipped

This commit is contained in:
2025-09-23 23:29:20 -07:00
parent e5b0053465
commit 81d6518553
3 changed files with 72 additions and 72 deletions

View File

@ -29,11 +29,7 @@
}
// Render the object
block(
above: 8mm,
below: 2mm,
text(weight: "bold", obj_content),
)
block(above: 8mm, below: 2mm, text(weight: "bold", obj_content))
// Generate labeled metadata for this object.
//
@ -57,7 +53,7 @@
if not (
it.element != none
and it.element.has("value")
and type(it.element.value) == "dictionary"
and type(it.element.value) == dictionary
and it.element.value.keys().contains(magic_key)
) {
// This label is not attached to object metadata
@ -100,9 +96,5 @@
#let remark = _mkobj("Remark")
#let generic(obj_content) = {
block(
above: 8mm,
below: 2mm,
text(weight: "bold", obj_content),
)
block(above: 8mm, below: 2mm, text(weight: "bold", obj_content))
}