mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 20:07:22 +00:00
ef6b669e25
This was not properly implemented, causing some unintended results. Closes #11534.
633 B
633 B
% pandoc -f markdown+lists_without_preceding_blankline+alerts -t native
:::: caution
::: title
Caution
:::
Foo bar, wuppie fluppie!
::::
^D
[ Div
( "" , [ "caution" ] , [] )
[ Div ( "" , [ "title" ] , [] ) [ Para [ Str "Caution" ] ]
, Para
[ Str "Foo"
, Space
, Str "bar,"
, Space
, Str "wuppie"
, Space
, Str "fluppie!"
]
]
]
% pandoc -f markdown+lists_without_preceding_blankline -t native
hello
- a
- b
c
^D
[ Para [ Str "hello" ]
, BulletList
[ [ Plain [ Str "a" ] ]
, [ Plain [ Str "b" , SoftBreak , Str "c" ] ]
]
]