Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 968 Bytes

README.md

File metadata and controls

32 lines (21 loc) · 968 Bytes

html-parser Build Status

Parse HTML 5 in Elm 0.19!

import Html.Parser

Html.Parser.run "<div><p>Hello, world!</p></div>"
-- => Ok [ Element "div" [] [ Element "p" [] [ Text "Hello, world!" ] ] ]

This fork of https://github.com/hecrj/html-parser renders the media muted attribute as a property, instead of as an attribute, because Chrome doesn't pick it up otherwise, impacting autoplay.

Limitations

  • <script> tags are not fully supported.
  • SVG is not supported.

Feel free to contribute!

Contributing / Feedback

Feel free to fork and open issues or pull requests. You can also contact me (@hecrj) on the Elm Slack. I am always happy to talk!

Credits