You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In GitHub Markdown, there's a nice feature where you can start a list with a non-1 digit and it starts numbering there. As a step in that direction, when parsing Markdown lists, can we not convert to 1,2,3,4 automatically? The megamark parser should be able to read it anyways, so if we take a list like:
3. hi
4. hi
5. hi
...is there any way to preserve that numbering while in rich mode? Perhaps by storing the number in a <li data-numeral="3"> type attribute?
Just by way of example:
hi
hi
hi
The text was updated successfully, but these errors were encountered:
Aha -- examining GitHub's work, the list starts with <ol start="3"> -- I imagine that's a standard HTML way to do this. Could that work?
jywarren
changed the title
Don't reset numbering of numbered lists on mode change
Use start= attribute of <ol> to enable numbered lists that start with non-1 digits
Mar 1, 2018
(ref publiclab/PublicLab.Editor#128)
In GitHub Markdown, there's a nice feature where you can start a list with a non-
1
digit and it starts numbering there. As a step in that direction, when parsing Markdown lists, can we not convert to 1,2,3,4 automatically? Themegamark
parser should be able to read it anyways, so if we take a list like:...is there any way to preserve that numbering while in rich mode? Perhaps by storing the number in a
<li data-numeral="3">
type attribute?Just by way of example:
The text was updated successfully, but these errors were encountered: