-
Notifications
You must be signed in to change notification settings - Fork 9
Normalize HTML attributes #3
Copy link
Copy link
Open
Labels
Description
It would be helpful if Babelmark canonically reordered generated HTML attributes so that implementations that only differed in this regard were shown collectively.
Example
Most implementations generate
<img src="bar" alt="foo" title="baz">but Rdiscount and Pandoc put title before alt:
<img src="bar" title="baz" alt="foo">and Python-Markdown puts alt first.
<img alt="foo" src="bar" title="baz">Reactions are currently unavailable