typst-0.9: test/typ/meta/heading-02.out
--- parse tree ---
[ Comment
, ParBreak
, Heading
1
[ Code
"typ/meta/heading-02.typ"
( line 3 , column 4 )
(Block
(Content
[ Text "This"
, SoftBreak
, Text "is"
, SoftBreak
, Text "multiline"
, Text "."
, ParBreak
]))
]
, ParBreak
, Heading 1 [ Text "This" ]
, SoftBreak
, Text "is"
, Space
, Text "not"
, Text "."
, ParBreak
]
--- evaluated ---
document(body: { parbreak(),
heading(body: { text(body: [This
is
multiline.]),
parbreak() },
level: 1),
heading(body: text(body: [This]),
level: 1),
text(body: [is not.]),
parbreak() })