We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expected: To take ordered list start positions in account
<ol start="2"> <li>content</li> </ol> // expect to render 2. content
Actual: Always renders as 1. {message}
1. {message}
given the message
Favourite colour <ol> <li>red</li> <li>green</li> <li>blue</li> </ol>
which renders as
Favourite colour red green blue
Favourite colour
when replying with
is my favourite
// as html <ol start="2"> <li>green</li> </ol>
then markwon renders the message as
Taking a quick peek at the code, I'm hoping this would be a small change to the ListHandler initial value
The text was updated successfully, but these errors were encountered:
Hello @ouchadam ,
it is indeed missing from the ListHandler and could be added in the next version
ListHandler
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Expected: To take ordered list start positions in account
Actual: Always renders as
1. {message}
given the message
which renders as
when replying with
then markwon renders the message as
Taking a quick peek at the code, I'm hoping this would be a small change to the ListHandler initial value
The text was updated successfully, but these errors were encountered: