Files
John MacFarlane 8547196b44 Markdown reader: ordered sublists must start with 1
(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.
2026-07-01 11:17:21 +02:00

121 B

% pandoc
- Value ends with
  2.
- Gilda
  (1946)
^D
<ul>
<li>Value ends with
2.</li>
<li>Gilda
(1946)</li>
</ul>