Reduce example size

This commit is contained in:
Laurenz 2025-06-19 18:37:48 +02:00
parent 2edb44c6e3
commit 98c19fc1c8

View File

@ -144,17 +144,13 @@
```example ```example
#let par = [My special paragraph.] #let par = [My special paragraph.]
#let special(text) = { #let special(text) = {
set std.text(style: "italic", weight: "bold") set std.text(style: "italic")
set std.par.line(numbering: "1") set std.par.line(numbering: "1")
parbreak()
text text
parbreak()
} }
#lorem(10) #special(par)
#special[
#par
]
#lorem(10) #lorem(10)
``` ```