start playing with 0.15 bundle format

This commit is contained in:
Jean-Marie 'Histausse' Mineau 2026-06-17 08:05:59 +02:00
parent 3be22c5654
commit ba51d75528
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2
14 changed files with 1221 additions and 288 deletions

View file

@ -22,12 +22,12 @@
/// Concatenate all css found in css-list at the end of the document
#let get-css() = context {
css-list.final().join("\n\n")
html.style(css-list.final().join("\n\n"))
}
/// Concatenate all js found in js-list at the end of the document
#let get-js() = context {
js-list.final().join("\n\n")
html.script(js-list.final().join("\n\n"))
}
#let html-show(body) = {