It would be helpful if Babelmark canonically reordered generated HTML attributes so that implementations that only differed in this regard were shown collectively.
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">
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
but Rdiscount and Pandoc put
titlebeforealt:and Python-Markdown puts
altfirst.