Blame README.md

Packit 899799
## xml-conduit
Packit 899799
Packit 899799
This package provides parsing and rendering functions for XML. It is based on the datatypes found in the xml-types package. This package is broken up into the following modules:
Packit 899799
Packit 899799
* Text.XML: DOM-based parsing and rendering. This is the most commonly used module.
Packit 899799
Packit 899799
* Text.XML.Cursor: A wrapper around `Text.XML` which allows bidirectional traversing of the DOM, similar to XPath. (Note: Text.XML.Cursor.Generic is the same concept, but will work with any node representation.)
Packit 899799
Packit 899799
* Text.XML.Unresolved: A slight modification to `Text.XML` which does not require all entities to be resolved at parsing. The datatypes are slightly more complicated here, and therefore this module is only recommended when you need to deal directly with raw entities.
Packit 899799
Packit 899799
* Text.XML.Stream.Parse: Streaming parser, including some streaming parser combinators.
Packit 899799
Packit 899799
* Text.XML.Stream.Render: Streaming renderer.
Packit 899799
Packit 899799
Additionally, the [xml-hamlet
Packit 899799
package](http://www.stackage.org/package/xml-hamlet) provides a more convenient
Packit 899799
syntax for creating XML documents. For a more thorough tutorial on this
Packit 899799
library, please see
Packit 899799
[http://www.yesodweb.com/book/xml](http://www.yesodweb.com/book/xml).