typst-0.9: test/typ/compiler/shorthand-03.out
--- parse tree ---
[ Code
"typ/compiler/shorthand-03.typ"
( line 1 , column 2 )
(Set
(Ident (Identifier "text"))
[ KeyValArg (Identifier "font") (Literal (String "Roboto")) ])
, SoftBreak
, Text "A"
, Ellipsis
, Space
, Text "vs"
, Space
, Code
"typ/compiler/shorthand-03.typ"
( line 2 , column 10 )
(Literal (String "A..."))
, ParBreak
]
--- evaluated ---
document(body: { text(body: [
A… vs ],
font: "Roboto"),
text(body: [A...],
font: "Roboto"),
parbreak() })