Markdown has this strange behavior where once it thinks it’s a numbered list, it doesn’t care which numbers you use. I think behind the scenes it’s just parsing it as an HTML <ol> with each number converted to a <li>, thereby renumbering the list (<ul>).
Ftfy
Numbering didn’t work though. 1 4 5 6 and 9.
Markdown has this strange behavior where once it thinks it’s a numbered list, it doesn’t care which numbers you use. I think behind the scenes it’s just parsing it as an HTML
<ol>
with each number converted to a<li>
, thereby renumbering the list (<ul>
).