mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 22:25:53 +00:00
(or equivalent, e.g. 'i'). This brings the markdown parser in line with commonmark, and avoids a lot of unintended list starts. Closes #11735. Note that ordered lists that are not sublists may still start with numbers other than 1.
15 lines
121 B
Markdown
15 lines
121 B
Markdown
```
|
|
% pandoc
|
|
- Value ends with
|
|
2.
|
|
- Gilda
|
|
(1946)
|
|
^D
|
|
<ul>
|
|
<li>Value ends with
|
|
2.</li>
|
|
<li>Gilda
|
|
(1946)</li>
|
|
</ul>
|
|
```
|