mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 03:47:20 +00:00
a45878ff1e
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
210 B
210 B
% pandoc --tab-stop=2 --from=native --to=markdown
[ DefinitionList
[ ( [ Str "apple" ]
, [ [ Para [ Str "pomaceous" ] , Para [ Str "fruit" ] ] ]
)
]
]
^D
apple
: pomaceous
fruit