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