mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 13:15:51 +00:00
See 185c29b4b2 which claims that
`block` can occur in inline contexts. I can no longer confirm
this and suspect that it may have been an unintended behavior
of earlier versions of typst, now fixed.
Closes #11814.
17 lines
123 B
Markdown
17 lines
123 B
Markdown
```
|
|
% pandoc -f typst
|
|
#block[
|
|
para 1
|
|
]
|
|
#block[
|
|
para 2
|
|
]
|
|
#block[
|
|
para 3
|
|
]
|
|
^D
|
|
<p>para 1</p>
|
|
<p>para 2</p>
|
|
<p>para 3</p>
|
|
```
|