-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
HTML reader does not interpret type attribute on <ol> #2313
Comments
Am I missing something here? Given either of these commands: pandoc -f markdown -t html5 << EOT | pandoc -f html -t markdown
pandoc -f markdown -t html << EOT | pandoc -f html -t markdown I would expect the following to return identical results: 1. One
2. Two
<!-- -->
I. One
II. Two
<!-- -->
i. One
ii. Two
<!-- -->
A. One
B. Two
<!-- -->
a. One
b. Two
EOT Instead, I receive the following in both cases: 1. One
2. Two
<!-- -->
1. One
2. Two
<!-- -->
1. One
2. Two
<!-- -->
1. One
2. Two
<!-- -->
1. One
2. Two |
Oops, should have said I started fixing this bug. FYI, I think the nearby
I also had trouble running the HTML tests using only |
Yes, the style thing is messed up. We need to look for
+++ Ophir Lifshitz [Jul 21 15 13:20 ]:
|
PS. I'll wait for you to submit a PR fixing these things,
if you still want to work on it.
|
The HTML reader does not interpret the type attribute on
<ol>
(output by the HTML5 writer), as in the following case (version 1.15.0.6):This is the result:
The text was updated successfully, but these errors were encountered: