• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

src/Text/H03-May-2022-3,1602,249

test/H09-Sep-2001-1,026944

ChangeLog.mdH A D09-Sep-20014.7 KiB12973

LICENSEH A D09-Sep-20011.1 KiB2117

README.mdH A D09-Sep-20011.1 KiB2012

Setup.hsH A D09-Sep-2001135 74

xml-conduit.cabalH A D09-Sep-20012.9 KiB7871

README.md

1## xml-conduit
2
3This 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:
4
5* Text.XML: DOM-based parsing and rendering. This is the most commonly used module.
6
7* 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.)
8
9* 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.
10
11* Text.XML.Stream.Parse: Streaming parser, including some streaming parser combinators.
12
13* Text.XML.Stream.Render: Streaming renderer.
14
15Additionally, the [xml-hamlet
16package](http://www.stackage.org/package/xml-hamlet) provides a more convenient
17syntax for creating XML documents. For a more thorough tutorial on this
18library, please see
19[http://www.yesodweb.com/book/xml](http://www.yesodweb.com/book/xml).
20