hecrj / html-parser

Parse HTML 5 in Elm
https://package.elm-lang.org/packages/hecrj/html-parser/latest/
BSD 3-Clause "New" or "Revised" License
61 stars 25 forks source link

Add support for self-closing tags #1

Closed isaacseymour closed 6 years ago

isaacseymour commented 6 years ago

E.g. <br />. <link ... />

hecrj commented 6 years ago

Thank you!

I think a better approach would be to add support for this in the tag function using andThen and isVoidElement to chomp an optional / conditionally. Do you want to give it a shot?

hecrj commented 6 years ago

Merged! Thank you!

I will give it a shot myself :)