mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-30 17:59:17 +08:00
41b14dc891
This reverts some old code giving special treatment to lines ending in hyphens; I don't understand why it was there, because rst2html does not seem to do this. Closes #11323.
13 lines
86 B
Markdown
13 lines
86 B
Markdown
```
|
|
% pandoc -f rst
|
|
foo-
|
|
bar
|
|
^D
|
|
<dl>
|
|
<dt>foo-</dt>
|
|
<dd>
|
|
<p>bar</p>
|
|
</dd>
|
|
</dl>
|
|
```
|