wok annotate mxml/description.txt @ rev 25164

updated python-antlr (3.5.2 -> 3.5.3)
author Hans-G?nter Theisgen
date Fri Jul 01 10:50:21 2022 +0100 (23 months ago)
parents
children
rev   line source
Hans-G?nter@24935 1 Mini-XML is a tiny XML library that you can use to read and write XML
Hans-G?nter@24935 2 and XML-like data files in your application without requiring large
Hans-G?nter@24935 3 non-standard libraries.
Hans-G?nter@24935 4 Mini-XML only requires an ANSI C compatible compiler (GCC works, as do
Hans-G?nter@24935 5 most vendors' ANSI C compilers) and a make program.
Hans-G?nter@24935 6
Hans-G?nter@24935 7 Mini-XML provides the following functionality:
Hans-G?nter@24935 8
Hans-G?nter@24935 9 - Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded XML files
Hans-G?nter@24935 10 and strings.
Hans-G?nter@24935 11 - Data is stored in a linked-list tree structure, preserving the XML
Hans-G?nter@24935 12 data hierarchy.
Hans-G?nter@24935 13 - SAX (streamed) reading of XML files and strings to minimize memory
Hans-G?nter@24935 14 usage.
Hans-G?nter@24935 15 - Supports arbitrary element names, attributes, and attribute values
Hans-G?nter@24935 16 with no preset limits, just available memory.
Hans-G?nter@24935 17 - Supports integer, real, opaque ("cdata"), and text data types in
Hans-G?nter@24935 18 "leaf" nodes.
Hans-G?nter@24935 19 - Functions for creating and managing trees of data.
Hans-G?nter@24935 20 - "Find" and "walk" functions for easily locating and navigating trees
Hans-G?nter@24935 21 of data.
Hans-G?nter@24935 22
Hans-G?nter@24935 23 Mini-XML doesn't do validation or other types of processing on the
Hans-G?nter@24935 24 data based upon schema files or other sources of definition information.