Don't use XHTML in HTML.

pull/193/head
Michael R Sweet 19 years ago
parent f7fdbeb2c9
commit d3598ab24c
  1. 120
      doc/reference.html
  2. 17
      mxml.xml
  3. 16
      mxmldoc.c

@ -2,7 +2,7 @@
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>
<head>
<title>Documentation</title>
<meta name='creator' content='Mini-XML v2.3'/>
<meta name='creator' content='Mini-XML v2.3'>
<style><!--
h1, h2, h3, p { font-family: sans-serif; text-align: justify; }
tt, pre a:link, pre a:visited, tt a:link, tt a:visited { font-weight: bold; color: #7f0000; }
@ -27,7 +27,7 @@
</ul>
<!-- NEW PAGE -->
<h3><a name='mxml_type_e'>mxml_type_e</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>The XML node type.</p>
<h4>Values</h4>
@ -90,7 +90,7 @@
</ul>
<!-- NEW PAGE -->
<h3><a name='mxmlAdd'>mxmlAdd()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Add a node to a tree.
@ -122,7 +122,7 @@ mxmlAdd(
<p>Nothing.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlDelete'>mxmlDelete()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Delete a node and all of its children.
@ -144,7 +144,7 @@ mxmlDelete(
<p>Nothing.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlElementGetAttr'>mxmlElementGetAttr()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Get an attribute.
@ -168,7 +168,7 @@ mxmlElementGetAttr(
<p>Attribute value or NULL</p>
<!-- NEW PAGE -->
<h3><a name='mxmlElementSetAttr'>mxmlElementSetAttr()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Set an attribute.
@ -196,7 +196,7 @@ mxmlElementSetAttr(
<p>Nothing.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlEntityAddCallback'>mxmlEntityAddCallback()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Add a callback to convert entities to Unicode.</p>
<h4>Syntax</h4>
@ -210,7 +210,7 @@ mxmlEntityAddCallback(void);
<p>0 on success, -1 on failure</p>
<!-- NEW PAGE -->
<h3><a name='mxmlEntityGetName'>mxmlEntityGetName()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Get the name that corresponds to the character value.
@ -231,7 +231,7 @@ mxmlEntityGetName(
<p>Entity name or NULL</p>
<!-- NEW PAGE -->
<h3><a name='mxmlEntityGetValue'>mxmlEntityGetValue()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Get the character corresponding to a named entity.
@ -253,7 +253,7 @@ mxmlEntityGetValue(
<p>Character value or -1 on error</p>
<!-- NEW PAGE -->
<h3><a name='mxmlEntityRemoveCallback'>mxmlEntityRemoveCallback()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Remove a callback.</p>
<h4>Syntax</h4>
@ -267,7 +267,7 @@ mxmlEntityRemoveCallback(void);
<p>Nothing.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlFindElement'>mxmlFindElement()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Find the named element.
@ -305,7 +305,7 @@ mxmlFindElement(
<p>Element node or NULL</p>
<!-- NEW PAGE -->
<h3><a name='mxmlIndexDelete'>mxmlIndexDelete()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Delete an index.</p>
<h4>Syntax</h4>
@ -324,7 +324,7 @@ mxmlIndexDelete(
<p>Nothing.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlIndexEnum'>mxmlIndexEnum()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Return the next node in the index.
@ -345,7 +345,7 @@ mxmlIndexEnum(
<p>Next node or NULL if there is none</p>
<!-- NEW PAGE -->
<h3><a name='mxmlIndexFind'>mxmlIndexFind()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Find the next matching node.
@ -373,7 +373,7 @@ mxmlIndexFind(
<p>Node or NULL if none found</p>
<!-- NEW PAGE -->
<h3><a name='mxmlIndexNew'>mxmlIndexNew()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Create a new index.
@ -402,7 +402,7 @@ mxmlIndexNew(
<p>New index</p>
<!-- NEW PAGE -->
<h3><a name='mxmlIndexReset'>mxmlIndexReset()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Reset the enumeration/find pointer in the index and
return the first node in the index.
@ -425,7 +425,7 @@ mxmlIndexReset(
<p>First node or NULL if there is none</p>
<!-- NEW PAGE -->
<h3><a name='mxmlLoadFd'>mxmlLoadFd()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Load a file descriptor into an XML node tree.
@ -457,7 +457,7 @@ mxmlLoadFd(
<p>First node or NULL if the file could not be read.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlLoadFile'>mxmlLoadFile()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Load a file into an XML node tree.
@ -489,7 +489,7 @@ mxmlLoadFile(
<p>First node or NULL if the file could not be read.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlLoadString'>mxmlLoadString()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Load a string into an XML node tree.
@ -521,7 +521,7 @@ mxmlLoadString(
<p>First node or NULL if the string has errors.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlNewCDATA'>mxmlNewCDATA()</a> <span class='info'>&nbsp;Mini-XML 2.3&nbsp;</span></h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Create a new CDATA node.
@ -549,7 +549,7 @@ mxmlNewCDATA(
<p>New node</p>
<!-- NEW PAGE -->
<h3><a name='mxmlNewCustom'>mxmlNewCustom()</a> <span class='info'>&nbsp;Mini-XML 2.1&nbsp;</span></h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Create a new custom data node.
@ -577,7 +577,7 @@ mxmlNewCustom(
<p>New node</p>
<!-- NEW PAGE -->
<h3><a name='mxmlNewElement'>mxmlNewElement()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Create a new element node.
@ -602,7 +602,7 @@ mxmlNewElement(
<p>New node</p>
<!-- NEW PAGE -->
<h3><a name='mxmlNewInteger'>mxmlNewInteger()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Create a new integer node.
@ -627,7 +627,7 @@ mxmlNewInteger(
<p>New node</p>
<!-- NEW PAGE -->
<h3><a name='mxmlNewOpaque'>mxmlNewOpaque()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Create a new opaque string.
@ -653,7 +653,7 @@ mxmlNewOpaque(
<p>New node</p>
<!-- NEW PAGE -->
<h3><a name='mxmlNewReal'>mxmlNewReal()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Create a new real number node.
@ -678,7 +678,7 @@ mxmlNewReal(
<p>New node</p>
<!-- NEW PAGE -->
<h3><a name='mxmlNewText'>mxmlNewText()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Create a new text fragment node.
@ -707,7 +707,7 @@ mxmlNewText(
<p>New node</p>
<!-- NEW PAGE -->
<h3><a name='mxmlNewTextf'>mxmlNewTextf()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Create a new formatted text fragment node.
@ -738,7 +738,7 @@ mxmlNewTextf(
<p>New node</p>
<!-- NEW PAGE -->
<h3><a name='mxmlRemove'>mxmlRemove()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Remove a node from its parent.
@ -760,7 +760,7 @@ mxmlRemove(
<p>Nothing.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSaveAllocString'>mxmlSaveAllocString()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Save an XML node tree to an allocated string.
@ -791,7 +791,7 @@ mxmlSaveAllocString(
<p>Allocated string or NULL</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSaveFd'>mxmlSaveFd()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Save an XML tree to a file descriptor.
@ -818,7 +818,7 @@ mxmlSaveFd(
<p>0 on success, -1 on error.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSaveFile'>mxmlSaveFile()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Save an XML tree to a file.
@ -845,7 +845,7 @@ mxmlSaveFile(
<p>0 on success, -1 on error.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSaveString'>mxmlSaveString()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Save an XML node tree to a string.
@ -878,7 +878,7 @@ mxmlSaveString(
<p>Size of string</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSetCDATA'>mxmlSetCDATA()</a> <span class='info'>&nbsp;Mini-XML 2.3&nbsp;</span></h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Set the element name of a CDATA node.
@ -903,7 +903,7 @@ mxmlSetCDATA(
<p>0 on success, -1 on failure</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSetCustom'>mxmlSetCustom()</a> <span class='info'>&nbsp;Mini-XML 2.1&nbsp;</span></h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Set the data and destructor of a custom data node.
@ -928,7 +928,7 @@ mxmlSetCustom(
<p>0 on success, -1 on failure</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSetCustomHandlers'>mxmlSetCustomHandlers()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Set the handling functions for custom data.
@ -955,7 +955,7 @@ mxmlSetCustomHandlers(
<p>Nothing.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSetElement'>mxmlSetElement()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Set the name of an element node.
@ -978,7 +978,7 @@ mxmlSetElement(
<p>0 on success, -1 on failure</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSetErrorCallback'>mxmlSetErrorCallback()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Set the error message callback.</p>
<h4>Syntax</h4>
@ -992,7 +992,7 @@ mxmlSetErrorCallback(void);
<p>Nothing.</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSetInteger'>mxmlSetInteger()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Set the value of an integer node.
@ -1015,7 +1015,7 @@ mxmlSetInteger(
<p>0 on success, -1 on failure</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSetOpaque'>mxmlSetOpaque()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Set the value of an opaque node.
@ -1038,7 +1038,7 @@ mxmlSetOpaque(
<p>0 on success, -1 on failure</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSetReal'>mxmlSetReal()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Set the value of a real number node.
@ -1061,7 +1061,7 @@ mxmlSetReal(
<p>0 on success, -1 on failure</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSetText'>mxmlSetText()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Set the value of a text node.
@ -1086,7 +1086,7 @@ mxmlSetText(
<p>0 on success, -1 on failure</p>
<!-- NEW PAGE -->
<h3><a name='mxmlSetTextf'>mxmlSetTextf()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Set the value of a text node to a formatted string.
@ -1113,7 +1113,7 @@ mxmlSetTextf(
<p>0 on success, -1 on failure</p>
<!-- NEW PAGE -->
<h3><a name='mxmlWalkNext'>mxmlWalkNext()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Walk to the next logical node in the tree.
@ -1140,7 +1140,7 @@ mxmlWalkNext(
<p>Next node or NULL</p>
<!-- NEW PAGE -->
<h3><a name='mxmlWalkPrev'>mxmlWalkPrev()</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Walk to the previous logical node in the tree.
@ -1177,7 +1177,7 @@ mxmlWalkPrev(
</ul>
<!-- NEW PAGE -->
<h3><a name='mxml_attr_s'>mxml_attr_s</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Data types...</p>
<h4>Definition</h4>
@ -1197,7 +1197,7 @@ struct mxml_attr_s
</tbody></table></p>
<!-- NEW PAGE -->
<h3><a name='mxml_custom_s'>mxml_custom_s</a> <span class='info'>&nbsp;Mini-XML 2.1&nbsp;</span></h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>An XML custom value. </p>
<h4>Definition</h4>
@ -1215,7 +1215,7 @@ struct mxml_custom_s
</tbody></table></p>
<!-- NEW PAGE -->
<h3><a name='mxml_element_s'>mxml_element_s</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>An XML element value.</p>
<h4>Definition</h4>
@ -1237,7 +1237,7 @@ struct mxml_element_s
</tbody></table></p>
<!-- NEW PAGE -->
<h3><a name='mxml_index_s'>mxml_index_s</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>An XML node index.</p>
<h4>Definition</h4>
@ -1263,7 +1263,7 @@ struct mxml_index_s
</tbody></table></p>
<!-- NEW PAGE -->
<h3><a name='mxml_node_s'>mxml_node_s</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>An XML node.</p>
<h4>Definition</h4>
@ -1293,7 +1293,7 @@ struct mxml_node_s
</tbody></table></p>
<!-- NEW PAGE -->
<h3><a name='mxml_text_s'>mxml_text_s</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>An XML text value.</p>
<h4>Definition</h4>
@ -1326,7 +1326,7 @@ struct mxml_text_s
</ul>
<!-- NEW PAGE -->
<h3><a name='mxml_attr_t'>mxml_attr_t</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Data types...</p>
<h4>Definition</h4>
@ -1335,7 +1335,7 @@ typedef struct <a href='#mxml_attr_s'>mxml_attr_s</a> mxml_attr_t;
</pre>
<!-- NEW PAGE -->
<h3><a name='mxml_custom_load_cb_t'>mxml_custom_load_cb_t</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Custom data load callback function</p>
<h4>Definition</h4>
@ -1344,7 +1344,7 @@ typedef int (*mxml_custom_load_cb_t)(<a href='#mxml_node_t'>mxml_node_t</a> *, c
</pre>
<!-- NEW PAGE -->
<h3><a name='mxml_custom_save_cb_t'>mxml_custom_save_cb_t</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>Custom data save callback function</p>
<h4>Definition</h4>
@ -1353,7 +1353,7 @@ typedef char * (*mxml_custom_save_cb_t)(<a href='#mxml_node_t'>mxml_node_t</a> *
</pre>
<!-- NEW PAGE -->
<h3><a name='mxml_custom_t'>mxml_custom_t</a> <span class='info'>&nbsp;Mini-XML 2.1&nbsp;</span></h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>An XML custom value. </p>
<h4>Definition</h4>
@ -1362,7 +1362,7 @@ typedef struct <a href='#mxml_custom_s'>mxml_custom_s</a> mxml_custom_t;
</pre>
<!-- NEW PAGE -->
<h3><a name='mxml_element_t'>mxml_element_t</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>An XML element value.</p>
<h4>Definition</h4>
@ -1371,7 +1371,7 @@ typedef struct <a href='#mxml_element_s'>mxml_element_s</a> mxml_element_t;
</pre>
<!-- NEW PAGE -->
<h3><a name='mxml_index_t'>mxml_index_t</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>An XML node index.</p>
<h4>Definition</h4>
@ -1380,7 +1380,7 @@ typedef struct <a href='#mxml_index_s'>mxml_index_s</a> mxml_index_t;
</pre>
<!-- NEW PAGE -->
<h3><a name='mxml_node_t'>mxml_node_t</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>An XML node.</p>
<h4>Definition</h4>
@ -1389,7 +1389,7 @@ typedef struct <a href='#mxml_node_s'>mxml_node_s</a> mxml_node_t;
</pre>
<!-- NEW PAGE -->
<h3><a name='mxml_text_t'>mxml_text_t</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>An XML text value.</p>
<h4>Definition</h4>
@ -1398,7 +1398,7 @@ typedef struct <a href='#mxml_text_s'>mxml_text_s</a> mxml_text_t;
</pre>
<!-- NEW PAGE -->
<h3><a name='mxml_value_t'>mxml_value_t</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>An XML node value.</p>
<h4>Definition</h4>
@ -1412,7 +1412,7 @@ typedef union <a href='#mxml_value_u'>mxml_value_u</a> mxml_value_t;
</ul>
<!-- NEW PAGE -->
<h3><a name='mxml_value_u'>mxml_value_u</a> </h3>
<hr noshade/>
<hr noshade>
<h4>Description</h4>
<p>An XML node value.</p>
<h4>Definition</h4>

@ -839,8 +839,6 @@ the walk to the node's children.</description>
<typedef name="mxml_custom_save_cb_t">
<type>char *(*)(mxml_node_t *)</type>
<description>Custom data save callback function</description>
<description>C++ support...</description>
<description>End of &quot;$Id$&quot;.</description>
</typedef>
<typedef name="mxml_custom_t">
<type>struct mxml_custom_s</type>
@ -865,6 +863,21 @@ the walk to the node's children.</description>
<type>struct mxml_element_s</type>
<description>An XML element value.</description>
</typedef>
<struct name="mxml_fdbuf_s">
<description>File descriptor buffer (@private@)</description>
<variable name="buffer[8192]">
<type>unsigned char *current, *end,</type>
<description>Character buffer</description>
</variable>
<variable name="fd">
<type>int</type>
<description>File descriptor</description>
</variable>
</struct>
<typedef name="mxml_fdbuf_t">
<type>struct mxml_fdbuf_s</type>
<description>File descriptor buffer (@private@)</description>
</typedef>
<struct name="mxml_index_s">
<description>An XML node index.</description>
<variable name="alloc_nodes">

@ -2209,7 +2209,7 @@ write_documentation(
"<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n"
"<head>\n"
"\t<title>%s</title>\n"
"\t<meta name='creator' content='" MXML_VERSION "'/>\n"
"\t<meta name='creator' content='" MXML_VERSION "'>\n"
"\t<style><!--\n"
"\th1, h2, h3, p { font-family: sans-serif; text-align: justify; }\n"
"\ttt, pre a:link, pre a:visited, tt a:link, tt a:visited { font-weight: bold; color: #7f0000; }\n"
@ -2289,7 +2289,7 @@ write_documentation(
NULL, MXML_DESCEND_FIRST);
printf("<!-- NEW PAGE -->\n"
"<h3><a name='%s'>%s</a> %s</h3>\n"
"<hr noshade/>\n", cname, cname, get_comment_info(description));
"<hr noshade>\n", cname, cname, get_comment_info(description));
if (description)
{
@ -2474,7 +2474,7 @@ write_documentation(
NULL, MXML_DESCEND_FIRST);
printf("<!-- NEW PAGE -->\n"
"<h3><a name='%s'>%s</a> %s</h3>\n"
"<hr noshade/>\n", name, name, get_comment_info(description));
"<hr noshade>\n", name, name, get_comment_info(description));
if (description)
{
@ -2540,7 +2540,7 @@ write_documentation(
NULL, MXML_DESCEND_FIRST);
printf("<!-- NEW PAGE -->\n"
"<h3><a name='%s'>%s()</a> %s</h3>\n"
"<hr noshade/>\n", name, name, get_comment_info(description));
"<hr noshade>\n", name, name, get_comment_info(description));
if (description)
{
@ -2664,7 +2664,7 @@ write_documentation(
NULL, MXML_DESCEND_FIRST);
printf("<!-- NEW PAGE -->\n"
"<h3><a name='%s'>%s</a> %s</h3>\n"
"<hr noshade/>\n", cname, cname, get_comment_info(description));
"<hr noshade>\n", cname, cname, get_comment_info(description));
if (description)
{
@ -2827,7 +2827,7 @@ write_documentation(
NULL, MXML_DESCEND_FIRST);
printf("<!-- NEW PAGE -->\n"
"<h3><a name='%s'>%s</a> %s</h3>\n"
"<hr noshade/>\n", name, name, get_comment_info(description));
"<hr noshade>\n", name, name, get_comment_info(description));
if (description)
{
@ -2947,7 +2947,7 @@ write_documentation(
NULL, MXML_DESCEND_FIRST);
printf("<!-- NEW PAGE -->\n"
"<h3><a name='%s'>%s</a> %s</h3>\n"
"<hr noshade/>\n", name, name, get_comment_info(description));
"<hr noshade>\n", name, name, get_comment_info(description));
if (description)
{
@ -3029,7 +3029,7 @@ write_documentation(
NULL, MXML_DESCEND_FIRST);
printf("<!-- NEW PAGE -->\n"
"<h3><a name='%s'>%s</a> %s</h3>\n"
"<hr noshade/>", name, name, get_comment_info(description));
"<hr noshade>", name, name, get_comment_info(description));
if (description)
{

Loading…
Cancel
Save