51a46b7e31
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.
61 lines
670 B
Markdown
61 lines
670 B
Markdown
```
|
|
% pandoc -f html -t markdown-raw_html-bracketed_spans-native_spans
|
|
<ul>
|
|
<li>foo</li>
|
|
<li id="id">bar</li>
|
|
<li>baz</li>
|
|
</ul>
|
|
^D
|
|
- foo
|
|
- bar
|
|
- baz
|
|
```
|
|
|
|
```
|
|
% pandoc -f html -t markdown-raw_html-bracketed_spans-native_spans
|
|
<ul>
|
|
<li>foo</li>
|
|
<li id="id">bar<ul><li>subbar</li></ul></li>
|
|
<li>baz</li>
|
|
</ul>
|
|
^D
|
|
- foo
|
|
- bar
|
|
- subbar
|
|
- baz
|
|
```
|
|
|
|
|
|
```
|
|
% pandoc -f html -t markdown
|
|
<ul>
|
|
<li>foo</li>
|
|
<li id="id">bar</li>
|
|
<li>baz</li>
|
|
</ul>
|
|
^D
|
|
- foo
|
|
- [bar]{#id}
|
|
- baz
|
|
```
|
|
|
|
|
|
```
|
|
% pandoc -f html -t markdown
|
|
<ul>
|
|
<li><p>foo</p></li>
|
|
<li id="id"><p>bar</p></li>
|
|
<li><p>baz</p></li>
|
|
</ul>
|
|
^D
|
|
- foo
|
|
|
|
- <div id="id">
|
|
|
|
bar
|
|
|
|
</div>
|
|
|
|
- baz
|
|
|
|
```
|