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