mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 13:15:51 +00:00
Previously, the first line of a definition details item always used a colon and three spaces instead of respecting the tab-stop setting, which could lead to round-tripping issues. Likewise, the indentation of continuation paragraphs in definition lists now matches the two-characters leader of the first line for Markua output. Fixes: #10890
16 lines
210 B
Markdown
16 lines
210 B
Markdown
```
|
|
% pandoc --tab-stop=2 --from=native --to=markdown
|
|
[ DefinitionList
|
|
[ ( [ Str "apple" ]
|
|
, [ [ Para [ Str "pomaceous" ] , Para [ Str "fruit" ] ] ]
|
|
)
|
|
]
|
|
]
|
|
^D
|
|
apple
|
|
|
|
: pomaceous
|
|
|
|
fruit
|
|
```
|