fixed margin (for full-page)

This commit is contained in:
Louis Heredero 2024-05-19 17:34:55 +02:00
parent 6d59f4bc92
commit e584dc4e36
Signed by: HEL
GPG Key ID: 8D83DE470F8544E7
2 changed files with 3 additions and 2 deletions

View File

@ -449,7 +449,8 @@
(
width: auto,
height: auto,
fill: config.background
fill: config.background,
margin: 0cm
)
} else {
(:)

View File

@ -27,7 +27,7 @@
let lang = schema.lang
let content = schema.text
if not lang in valid-extensions {
let fmts = valid-extensions.map(fmt => "." + fmt).join(", ")
let fmts = valid-extensions.join(", ")
fmts = "(" + fmts + ")"
panic("Unsupported format '" + lang + "'. Valid formats: " + fmts)
}