Skip to content
New issue

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

Ordered list update #518

Merged
merged 2 commits into from
Jan 11, 2022
Merged

Ordered list update #518

merged 2 commits into from
Jan 11, 2022

Conversation

kaushalmodi
Copy link
Owner

@kaushalmodi kaushalmodi commented Jan 11, 2022

  1. Prevent export of ordered list in HTML format if only the first item in the list as custom numbering.
  2. Fix ordered list export if the number has more than 2 digits; fixes coverting long list above 100 #517

…ring

With Org source:

   +10. [@10] This will be 10!
   +11. This will be 11.

Earlier it exported to:

    <ol class="org-ol">
    <li value="10">This will be 10!</li>
    <li>This will be 11.</li>
    </ol>

Now it exports to:

    10. This will be 10!
   +11. This will be 11.
@kaushalmodi kaushalmodi merged commit 5c53204 into main Jan 11, 2022
@kaushalmodi kaushalmodi deleted the ordered-list-update branch January 11, 2022 16:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

coverting long list above 100
1 participant