typst-0.9: test/typ/regression/issue12.out
--- parse tree ---
[ Text "he"
, Quote '\''
, Strong [ Text "llo" , Space , Text "World" ]
, ParBreak
, Text "l\8217"
, Strong [ Text "exactitude" ]
, ParBreak
, Text "a*b_c_e"
, ParBreak
]
--- evaluated ---
document(body: { text(body: [he’]),
strong(body: text(body: [llo World])),
parbreak(),
text(body: [l’]),
strong(body: text(body: [exactitude])),
parbreak(),
text(body: [a*b_c_e]),
parbreak() })