forked from katzen-cafe/iowo
docs(template): make outline rendering configurable
This commit is contained in:
parent
d1001ad90d
commit
c0dd533d81
2 changed files with 15 additions and 12 deletions
|
@ -248,7 +248,7 @@
|
|||
|
||||
// literally just for standalone display of the graphics alone
|
||||
#import "../../template.typ": conf
|
||||
#show: conf
|
||||
#show: conf.with(render-outline: false)
|
||||
#set page(width: auto, height: auto)
|
||||
|
||||
#graph-example
|
||||
|
|
|
@ -56,6 +56,7 @@
|
|||
#let conf(
|
||||
title: none,
|
||||
subtitle: none,
|
||||
render-outline: true,
|
||||
doc,
|
||||
) = {
|
||||
set page(
|
||||
|
@ -134,6 +135,7 @@
|
|||
}
|
||||
|
||||
// outline and other prelude info
|
||||
if render-outline {
|
||||
outline(
|
||||
indent: auto,
|
||||
fill: line(
|
||||
|
@ -146,6 +148,7 @@
|
|||
),
|
||||
),
|
||||
)
|
||||
}
|
||||
|
||||
// content itself
|
||||
doc
|
||||
|
|
Loading…
Reference in a new issue