packages feed

typst-0.9: test/typ/text/space-01.out

--- parse tree ---
[ Comment
, SoftBreak
, Text "A"
, Comment
, Text "B"
, Comment
, Text "C"
, Space
, HardBreak
, Text "A"
, Space
, Comment
, Space
, Text "B"
, Comment
, Text "C"
, Space
, HardBreak
, Text "A"
, Space
, Comment
, Text "B"
, Comment
, Space
, Text "C"
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
A]), 
                 text(body: [B]), 
                 text(body: [C ]), 
                 linebreak(), 
                 text(body: [A ]), 
                 text(body: [ B]), 
                 text(body: [C ]), 
                 linebreak(), 
                 text(body: [A ]), 
                 text(body: [B]), 
                 text(body: [ C]), 
                 parbreak() })