mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-02 05:35:38 +00:00
We used to insert extra spaces to ensure that the content respected the four-space rule. That is not really necessary now, since pandoc's markdown and most markdowns don't follow the four-space rule. Those who want the old behavior can obtain it by using `-t markdown+four_space_rule`. Closes #7172.
12 lines
167 B
Markdown
12 lines
167 B
Markdown
```
|
|
% pandoc -f native -t markdown
|
|
[OrderedList (8,UpperRoman,Period)
|
|
[[Plain [Str "Blah"]
|
|
,BulletList
|
|
[[Plain [Str "Blah"]]]]]]
|
|
^D
|
|
VIII. Blah
|
|
- Blah
|
|
```
|
|
|