Releases: hecrj/html-parser
Releases · hecrj/html-parser
2.3.4
Changed
- Treat a non-breaking space (
\u{00a0}
) like a space character. This avoids runtime errors when using Html.Util.toVirtualDom
. Thanks to @magopian! See #10.
2.3.3
Changed
- Support hyphens in tag names (allows parsing web components). Thanks to @andre-dietrich!
2.3.2
Changed
- Fix decimal numeric character references failing to parse if they contained leading zeros (#8). Thanks to @68KHeart!
- Fix
nodeToString
example in documentation.
2.3.1
Changed
Html.Parser.nodeToString
spaces attributes properly.
2.3.0
Added
Html.Parser.nodeToString
to turn parser nodes back into its HTML representation.
2.2.0
Added
- Expose
Html.Parser.node
to allow other folks to build different parsers on top of this one!
2.1.0
Added
- Expose
Html.Parser.Attribute
type alias so the documentation is complete.
2.0.1
Changed
- Fix parser erroring when input is an empty string. Thanks to @doanythingfordethklok!
2.0.0
Removed
Html.Parser.Util.toVirtualDomSvg
as parsing of SVG nodes is not implemented yet.