mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-30 17:59:17 +08:00
372cd1d3b1
E.g. `#strong[ test ]`. Here we simply skip the final parbreak. Treat this as a soft break, which will give results similar to the typst app.
14 lines
165 B
Markdown
14 lines
165 B
Markdown
```
|
|
% pandoc -f typst -t native
|
|
#let foo = [
|
|
bar baz
|
|
]
|
|
*#foo*
|
|
^D
|
|
[ Para
|
|
[ Strong
|
|
[ SoftBreak , Str "bar" , Space , Str "baz" , SoftBreak ]
|
|
]
|
|
]
|
|
```
|