typst-0.9: test/typ/compiler/show-text-08.out
--- parse tree ---
[ Comment
, ParBreak
, Code
"typ/compiler/show-text-08.typ"
( line 3 , column 2 )
(Show
(Just (Literal (String "GRAPH")))
(FuncCall
(Ident (Identifier "image"))
[ NormalArg (Literal (String "/assets/files/graph.png")) ]))
, ParBreak
, Text "The"
, Space
, Text "GRAPH"
, Space
, Text "has"
, Space
, Text "nodes"
, Text "."
, ParBreak
]
--- evaluated ---
document(body: { parbreak(),
parbreak(),
text(body: [The ]),
image(source: "/assets/files/graph.png"),
text(body: [ has nodes.]),
parbreak() })