17 lines
269 B
Plaintext
17 lines
269 B
Plaintext
|
|
#let poem(content) = {
|
||
|
|
set par(first-line-indent: 0em)
|
||
|
|
|
||
|
|
align(center, block[
|
||
|
|
#set align(left)
|
||
|
|
#set block(breakable: false)
|
||
|
|
#emph(content)
|
||
|
|
])
|
||
|
|
}
|
||
|
|
|
||
|
|
#poem[
|
||
|
|
#block[
|
||
|
|
“Soo---oop of the e---e---evening, \
|
||
|
|
#h(1em)Beautiful, beautiful Soup!”
|
||
|
|
]
|
||
|
|
]
|