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
When rendering an ordered list, Markwon should maintain the numbering provided by the user without automatically renumbering the items. For example, if the user inputs:
1. item 1
5. item 5
3. item 3
The rendered output should match the user input:
1. item 1
5. item 5
3. item 3
Actual Behavior
Currently, Markwon automatically renumbers ordered list items. The input above is rendered as:
1. item 1
2. item 5
3. item 3
Steps to Reproduce
Use the Markwon library in an Android project to render a simple ordered list with user-defined numbers that are not sequential.
Observe that the list is renumbered when displayed in the app's UI.
Sample Markdown Used:
1. item 1
5. item 5
3. item 3
Expected outcome: The numbers should be displayed exactly as provided by the user, similar to how a WhatsApp-like messaging application functions. Users do not want the list to be altered when they manually adjust the numbering while providing input.
Actual outcome: The numbers are adjusted to be sequential.
The text was updated successfully, but these errors were encountered:
Expected Behavior
When rendering an ordered list, Markwon should maintain the numbering provided by the user without automatically renumbering the items. For example, if the user inputs:
The rendered output should match the user input:
Actual Behavior
Currently, Markwon automatically renumbers ordered list items. The input above is rendered as:
Steps to Reproduce
Sample Markdown Used:
Expected outcome: The numbers should be displayed exactly as provided by the user, similar to how a WhatsApp-like messaging application functions. Users do not want the list to be altered when they manually adjust the numbering while providing input.
Actual outcome: The numbers are adjusted to be sequential.
The text was updated successfully, but these errors were encountered: