mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
8 lines
230 B
Typst
8 lines
230 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, 13).join(" ")
|
|
#box(fill: teal, outset: 2pt)[tempor]
|
|
#words.slice(13).join(" ")
|
|
]
|