typst-0.9: test/typ/text/emphasis-01.out
--- parse tree ---
[ Comment
, SoftBreak
, Text "P"
, Code
"typ/text/emphasis-01.typ"
( line 2 , column 3 )
(FuncCall
(Ident (Identifier "strong")) [ BlockArg [ Text "art" ] ])
, Text "ly"
, Space
, Text "em"
, Code
"typ/text/emphasis-01.typ"
( line 2 , column 20 )
(FuncCall (Ident (Identifier "emph")) [ BlockArg [ Text "phas" ] ])
, Text "ized"
, Text "."
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
P]),
strong(body: text(body: [art])),
text(body: [ly em]),
emph(body: text(body: [phas])),
text(body: [ized.]),
parbreak() })