Sync up other documentation changes.

pull/193/head
Michael Sweet 7 years ago
parent 97a9edbf30
commit 37a03874c9
  1. 31
      doc/basics.html
  2. 38
      doc/docset.intro

@ -9,31 +9,16 @@ access data in an XML file. Mini-XML provides the following
functionality:</p> functionality:</p>
<ul> <ul>
<li>Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded XML files and strings.</li>
<li>Functions for creating and managing XML documents <li>Data is stored in a linked-list tree structure, preserving the XML data hierarchy.</li>
in memory.</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>Reading of UTF-8 and UTF-16 encoded XML files and <li>Supports integer, real, opaque ("cdata"), and text data types in "leaf" nodes.</li>
strings.</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>
<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>
</ul> </ul>
<p>Mini-XML doesn't do validation or other types of processing <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>
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>
<h2>The Basics</h2> <h2>The Basics</h2>

@ -1,37 +1,19 @@
<h2 class='title'><a name='INTRODUCTION'>Introduction</a></h2> <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 <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>
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>
<ul> <ul>
<li>Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded XML files and strings.</li>
<li>Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded XML files <li>Data is stored in a linked-list tree structure, preserving the XML data hierarchy.</li>
and strings.</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>Data is stored in a linked-list tree structure, preserving the XML <li>Supports integer, real, opaque ("cdata"), and text data types in "leaf" nodes.</li>
data hierarchy.</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>
<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>
</ul> </ul>
<p>Mini-XML doesn't do validation or other types of processing on the data based <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>
upon schema files or other sources of definition information, nor does it
support character entities other than those required by the XML
specification.</p>
<h2 class='title'><a name='USING'>Using Mini-XML</a></h2> <h2 class='title'><a name='USING'>Using Mini-XML</a></h2>

Loading…
Cancel
Save