mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 22:25:53 +00:00
This change also affects the `pandoc.utils.blocks_to_inlines` Lua function. Closes: #8499
21 lines
237 B
Markdown
21 lines
237 B
Markdown
```
|
|
% pandoc -s -t native
|
|
---
|
|
ml: |-
|
|
TEST
|
|
|
|
BLOCK
|
|
...
|
|
^D
|
|
Pandoc
|
|
Meta
|
|
{ unMeta =
|
|
fromList
|
|
[ ( "ml"
|
|
, MetaInlines [ Str "TEST" , LineBreak , Str "BLOCK" ]
|
|
)
|
|
]
|
|
}
|
|
[]
|
|
```
|