hexml

An XML DOM-style parser, that only parses a subset of XML, but is designed to be fast.


Keywords
library, xml, Propose Tags , Text.XML.Hexml, Pugixml, Haskell binding, AFL, hexml-lens, haskell, performant, xml-parser
License
BSD-3-Clause
Install
cabal install hexml-0.3.4

Documentation

Hexml Hackage version Stackage version Linux Build Status Windows Build Status

An XML DOM-style parser, that only parses a subset of XML, but is designed to be fast. In particular:

  • Entities, e.g. &, are not expanded.
  • Not all the validity conditions are checked.
  • No support for <!DOCTYPE related features.

The name "hexml" is a combination of "Hex" (a curse) and "XML". The "X" should not be capitalised because the parser is more curse and less XML.

Hexml may be suitable if you want to quickly parse XML, from known sources, and a full XML parser has been shown to be a bottleneck. As an alternative to hexml, which supports things like entities but is still pretty fast, see Pugixml (with a Haskell binding).

Hexml is tested with AFL.

If you want lenses for Hexml, see hexml-lens.