aboutsummaryrefslogtreecommitdiff
path: root/test/command/3596.md
AgeCommit message (Collapse)AuthorFilesLines
2017-10-31Markdown reader: make sure fenced div closers work in lists.John MacFarlane1-1/+0
Previously the following failed: ::: {.class} 1. one 2. two ::: and you needed a blank line before the closing `:::`.
2017-10-31Make `fenced_divs` affect the Markdown writer.John MacFarlane1-3/+2
If `fenced_divs` is enabled, fenced divs will be used.
2017-04-23HTML reader: Revise treatment of li with id attribute.John MacFarlane1-0/+61
Previously we always added an empty div before the list item, but this created problems with spacing in tight lists. Now we do this: If the list item contents begin with a Plain block, we modify the Plain block by adding a Span around its contents. Otherwise, we add a Div around the contents of the list item (instead of adding an empty Div to the beginning, as before). Closes #3596.