diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2010-02-08 22:59:26 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2010-02-08 22:59:26 +0100 |
commit | d4107728d369042e43c2229cbf59c0b89619ae55 (patch) | |
tree | 272c3e2db7b2f66718c8ec2701b3f0e97db450ce /doc | |
parent | 44ed48ffa6c39653415b0e0e528a1e8a515a7a77 (diff) | |
download | Nim-d4107728d369042e43c2229cbf59c0b89619ae55.tar.gz |
added xmldom modules
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/lib.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/lib.txt b/doc/lib.txt index 7167cbf4e..06edf997c 100755 --- a/doc/lib.txt +++ b/doc/lib.txt @@ -68,6 +68,9 @@ String handling is done in O(1) instead of O(n). * `unidecode <unidecode.html>`_ + This module provides Unicode to ASCII transliterations: + It finds the sequence of ASCII characters that is the closest approximation + to the Unicode string. Generic Operating System Services @@ -162,6 +165,16 @@ Parsers scheme for lexers and parsers. This is used by the diverse parsing modules. +XML Processing +-------------- + +* `xmldom <xmldom.html>`_ + This module implements the XML DOM Level 2. + +* `xmldomparser <xmldomparser.html>`_ + This module parses a XML Document into a XML DOM Document representation. + + Code generation --------------- |