typst-0.9: test/typ/regression/issue55.out
--- parse tree ---
[ Equation
True
[ MGroup (Just "(") (Just ")") [ Text "b" ]
, MFrac
(MGroup (Just "(") (Just ")") [ Text "c" ])
(MGroup Nothing Nothing [ Text "d" ])
, Text "!"
, MFrac
(MGroup (Just "(") (Just ")") [ Text "a" ])
(MGroup Nothing Nothing [ Text "b" ])
, MGroup Nothing Nothing [ HardBreak , Text "!" ]
, MFrac
(MGroup (Just "(") (Just ")") [ Text "a" ])
(MGroup Nothing Nothing [ Text "b" ])
]
, ParBreak
]
--- evaluated ---
document(body: { math.equation(block: true,
body: { math.lr(body: ({ [(],
text(body: [b]),
[)] })),
math.frac(denom: text(body: [d]),
num: text(body: [c])),
text(body: [!]),
math.frac(denom: text(body: [b]),
num: text(body: [a])),
linebreak(),
text(body: [!]),
math.frac(denom: text(body: [b]),
num: text(body: [a])) },
numbering: none),
parbreak() })