typst-0.9: test/typ/regression/issue90-comments-in-listitem-pr96.out
--- parse tree ---
[ BulletListItem [ Text "one" , Space , Comment , Text "two" ]
, SoftBreak
, Text "three"
, ParBreak
]
--- evaluated ---
document(body: { list(children: ({ text(body: [one ]),
text(body: [two]) })),
text(body: [three]),
parbreak() })