diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-10-16 11:24:28 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-10-16 11:24:28 +0200 |
commit | 3bce637a2a610c7991b7cbf87c530d87b019c3d6 (patch) | |
tree | 478e7a9a8d95dd389df6fc657716f2f4fe1ae7f3 | |
parent | 2cda3937b6e8cd333e4a4388553a17339fce82ac (diff) |
README.xml: reference examples, ANSI compatible, mention original parser
-rw-r--r-- | README.xml | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -3,11 +3,14 @@ XML parser A small XML parser. +For the original version see: +https://git.codemadness.org/xmlparser/ + Dependencies ------------ -- C compiler (C99). +- C compiler (ANSI). Features @@ -51,7 +54,7 @@ Caveats HTML <pre> tags. - The XML specification has no limits on tag and attribute names. For simplicity/sanity sake this XML parser takes some liberties. Tag and - attribute names are truncated. + attribute names are truncated if they are excessively long. - Entity expansions are not parsed aswell as DOCTYPE, ATTLIST etc. @@ -72,6 +75,9 @@ Examples sfeed_opml_import.c or sfeed_web.c or sfeed_xmlenc.c +See skeleton.c in the original xmlparser repository for a base program to start +quickly. + License ------- |