Skip to content

Normalize HTML attributes #3

Open
@Crissov

Description

@Crissov

It would be helpful if Babelmark canonically reordered generated HTML attributes so that implementations that only differed in this regard were shown collectively.

Example

![foo](bar "baz")

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">

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions