typst-0.9: test/typ/math/multiline-08.out
--- parse tree ---
[ Comment
, SoftBreak
, Equation
True
[ Text " abc "
, MAlignPoint
, Text "="
, Text "c"
, HardBreak
, HardBreak
, HardBreak
]
, SoftBreak
, Text "Multiple"
, Space
, Text "trailing"
, Space
, Text "line"
, Space
, Text "breaks"
, Text "."
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]),
math.equation(block: true,
body: { text(body: [ abc ]),
math.alignpoint(),
text(body: [=]),
text(body: [c]),
linebreak(),
linebreak(),
linebreak() },
numbering: none),
text(body: [
Multiple trailing line breaks.]),
parbreak() })