mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
8 lines
234 B
Typst
8 lines
234 B
Typst
#set page(height: 100pt)
|
|
#let words = lorem(18).split()
|
|
#block(inset: 8pt, width: 100%, fill: aqua, stroke: aqua.darken(30%))[
|
|
#words.slice(0, 12).join(" ")
|
|
#box(fill: teal, outset: 2pt)[incididunt]
|
|
#words.slice(12).join(" ")
|
|
]
|