Skip to content

Releases: hecrj/html-parser

2.3.4

09 Apr 20:48
Compare
Choose a tag to compare

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

25 Mar 19:16
Compare
Choose a tag to compare

Changed

  • Support hyphens in tag names (allows parsing web components). Thanks to @andre-dietrich!

2.3.2

23 Mar 19:04
Compare
Choose a tag to compare

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

10 Mar 16:11
Compare
Choose a tag to compare

Changed

  • Html.Parser.nodeToString spaces attributes properly.

2.3.0

10 Mar 16:05
Compare
Choose a tag to compare

Added

  • Html.Parser.nodeToString to turn parser nodes back into its HTML representation.

2.2.0

27 Feb 18:42
Compare
Choose a tag to compare

Added

  • Expose Html.Parser.node to allow other folks to build different parsers on top of this one!

2.1.0

21 Feb 01:05
Compare
Choose a tag to compare

Added

  • Expose Html.Parser.Attribute type alias so the documentation is complete.

2.0.1

15 Feb 11:46
Compare
Choose a tag to compare

Changed

  • Fix parser erroring when input is an empty string. Thanks to @doanythingfordethklok!

2.0.0

06 Dec 21:38
Compare
Choose a tag to compare

Removed

  • Html.Parser.Util.toVirtualDomSvg as parsing of SVG nodes is not implemented yet.

1.1.0

06 Dec 21:23
Compare
Choose a tag to compare

Added