mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-24 11:25:30 +00:00
Sync up other documentation changes.
This commit is contained in:
parent
97a9edbf30
commit
37a03874c9
@ -9,31 +9,16 @@ access data in an XML file. Mini-XML provides the following
|
||||
functionality:</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li>Functions for creating and managing XML documents
|
||||
in memory.</li>
|
||||
|
||||
<li>Reading of UTF-8 and UTF-16 encoded XML files and
|
||||
strings.</li>
|
||||
|
||||
<li>Writing of UTF-8 encoded XML files and strings.</li>
|
||||
|
||||
<li>Support for arbitrary element names, attributes, and
|
||||
attribute values with no preset limits, just available
|
||||
memory.</li>
|
||||
|
||||
<li>Support for integer, real, opaque ("CDATA"), and text
|
||||
data types in "leaf" nodes.</li>
|
||||
|
||||
<li>"Find", "index", and "walk" functions for easily
|
||||
accessing data in an XML document.</li>
|
||||
|
||||
<li>Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded XML files and strings.</li>
|
||||
<li>Data is stored in a linked-list tree structure, preserving the XML data hierarchy.</li>
|
||||
<li>SAX (streamed) reading of XML files and strings to minimize memory usage.</li>
|
||||
<li>Supports arbitrary element names, attributes, and attribute values with no preset limits, just available memory.</li>
|
||||
<li>Supports integer, real, opaque ("cdata"), and text data types in "leaf" nodes.</li>
|
||||
<li>Functions for creating and managing trees of data.</li>
|
||||
<li>"Find" and "walk" functions for easily locating and navigating trees of data.</li>
|
||||
</ul>
|
||||
|
||||
<p>Mini-XML doesn't do validation or other types of processing
|
||||
on the data based upon schema files or other sources of
|
||||
definition information, nor does it support character entities
|
||||
other than those required by the XML specification.</p>
|
||||
<p>Mini-XML doesn't do validation or other types of processing on the data based upon schema files or other sources of definition information.</p>
|
||||
|
||||
|
||||
<h2>The Basics</h2>
|
||||
|
@ -1,37 +1,19 @@
|
||||
<h2 class='title'><a name='INTRODUCTION'>Introduction</a></h2>
|
||||
|
||||
<p>Mini-XML is a small XML parsing library that you can use to read XML and
|
||||
XML-like data files in your application without requiring large non-standard
|
||||
libraries. Mini-XML only requires an ANSI C compatible compiler (GCC works,
|
||||
as do most vendors' ANSI C compilers) and a "make" program.</p>
|
||||
|
||||
<p>Mini-XML provides the following functionality:</p>
|
||||
<p>Mini-XML is a small XML parsing library that you can use to read XML data files or strings in your application without requiring large non-standard libraries. Mini-XML provides the following functionality:</p>
|
||||
|
||||
<ul>
|
||||
|
||||
<li>Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded XML files
|
||||
and strings.</li>
|
||||
|
||||
<li>Data is stored in a linked-list tree structure, preserving the XML
|
||||
data hierarchy.</li>
|
||||
|
||||
<li>Supports arbitrary element names, attributes, and attribute values
|
||||
with no preset limits, just available memory.</li>
|
||||
|
||||
<li>Supports integer, real, opaque ("CDATA"), and text data types in
|
||||
"leaf" nodes.</li>
|
||||
|
||||
<li>Functions for creating, indexing, and managing trees of data.</li>
|
||||
|
||||
<li>"Find" and "walk" functions for easily locating and navigating trees
|
||||
of data.</li>
|
||||
|
||||
<li>Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded XML files and strings.</li>
|
||||
<li>Data is stored in a linked-list tree structure, preserving the XML data hierarchy.</li>
|
||||
<li>SAX (streamed) reading of XML files and strings to minimize memory usage.</li>
|
||||
<li>Supports arbitrary element names, attributes, and attribute values with no preset limits, just available memory.</li>
|
||||
<li>Supports integer, real, opaque ("cdata"), and text data types in "leaf" nodes.</li>
|
||||
<li>Functions for creating and managing trees of data.</li>
|
||||
<li>"Find" and "walk" functions for easily locating and navigating trees of data.</li>
|
||||
</ul>
|
||||
|
||||
<p>Mini-XML doesn't do validation or other types of processing on the data based
|
||||
upon schema files or other sources of definition information, nor does it
|
||||
support character entities other than those required by the XML
|
||||
specification.</p>
|
||||
<p>Mini-XML doesn't do validation or other types of processing on the data based upon schema files or other sources of definition information.</p>
|
||||
|
||||
|
||||
<h2 class='title'><a name='USING'>Using Mini-XML</a></h2>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user