typst-0.9: test/typ/math/vec-00.out
--- parse tree ---
[ Comment
, SoftBreak
, Equation
True
[ Text "v"
, Text "="
, Code
"typ/math/vec-00.typ"
( line 2 , column 7 )
(FuncCall
(Ident (Identifier "vec"))
[ BlockArg [ Text "1" ]
, BlockArg [ Text "2" , Text "+" , Text "3" ]
, BlockArg [ Text "4" ]
])
]
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
]),
math.equation(block: true,
body: { text(body: [v]),
text(body: [=]),
math.vec(children: (text(body: [1]),
{ text(body: [2]),
text(body: [+]),
text(body: [3]) },
text(body: [4]))) },
numbering: none),
parbreak() })