mirror of
https://forge.katzen.cafe/katzen-cafe/iowo.git
synced 2024-11-05 15:26:24 +01:00
docs: place strategic pagebreaks automatically
This commit is contained in:
parent
ef7ab3e239
commit
5f95f36214
|
@ -19,8 +19,6 @@
|
||||||
- algebraic enums
|
- algebraic enums
|
||||||
- traits (`Numeric`...)
|
- traits (`Numeric`...)
|
||||||
|
|
||||||
#pagebreak()
|
|
||||||
|
|
||||||
= Execution stages
|
= Execution stages
|
||||||
|
|
||||||
#graphics.stages-overview
|
#graphics.stages-overview
|
||||||
|
|
|
@ -73,8 +73,10 @@
|
||||||
set text(..fonts.main)
|
set text(..fonts.main)
|
||||||
set heading(numbering: "A.1")
|
set heading(numbering: "A.1")
|
||||||
|
|
||||||
show link: text.with(fill: blue)
|
|
||||||
show heading: it => text(..fonts.heading, it)
|
show heading: it => text(..fonts.heading, it)
|
||||||
|
// color links
|
||||||
|
show link: text.with(fill: blue)
|
||||||
|
// prettify codeblocks
|
||||||
show raw.where(block: true): box.with(
|
show raw.where(block: true): box.with(
|
||||||
fill: luma(95%),
|
fill: luma(95%),
|
||||||
inset: 1.25em,
|
inset: 1.25em,
|
||||||
|
@ -93,6 +95,16 @@
|
||||||
it
|
it
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// semi-strategically place pagebreaks for better orientation
|
||||||
|
let pagebreak-before(it) = pagebreak() + it
|
||||||
|
show heading.where(outlined: true): it => {
|
||||||
|
if it.level <= 2 {
|
||||||
|
pagebreak()
|
||||||
|
}
|
||||||
|
|
||||||
|
it
|
||||||
|
}
|
||||||
|
|
||||||
// highlight important terms in bold
|
// highlight important terms in bold
|
||||||
show raw: it => {
|
show raw: it => {
|
||||||
// avoid making terms in codeblocks bold
|
// avoid making terms in codeblocks bold
|
||||||
|
|
Loading…
Reference in a new issue