diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2010-02-10 03:21:03 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2010-02-10 03:21:03 +0100 |
commit | f721ddd75b61600a06995ee728f332fa96f45dd2 (patch) | |
tree | 50e6b745db5c037e8054007723770283eb6d88e3 /doc | |
parent | d4107728d369042e43c2229cbf59c0b89619ae55 (diff) | |
download | Nim-f721ddd75b61600a06995ee728f332fa96f45dd2.tar.gz |
new XML modules
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/lib.txt | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/lib.txt b/doc/lib.txt index 06edf997c..609889607 100755 --- a/doc/lib.txt +++ b/doc/lib.txt @@ -172,7 +172,16 @@ XML Processing This module implements the XML DOM Level 2. * `xmldomparser <xmldomparser.html>`_ - This module parses a XML Document into a XML DOM Document representation. + This module parses an XML Document into a XML DOM Document representation. + +* `xmltree <xmltree.html>`_ + A simple XML tree. More efficient and simpler than the DOM. + +* `xmltreeparser <xmltreeparser.html>`_ + This module parses an XML document and creates its XML tree representation. + +* `htmlparser <htmlparser.html>`_ + This module parses an HTML document and creates its XML tree representation. Code generation |