docs: Regenerate HTML documentation
Includes wording fixes and format_skip_control_chars
This commit is contained in:
parent
b9a0d7ff23
commit
b01569918a
2 changed files with 11 additions and 7 deletions
|
@ -687,7 +687,7 @@ No documentation is perfect; neither is this one. If you find errors or omission
|
|||
</div>
|
||||
<div class="literalblock">
|
||||
<div class="content">
|
||||
<pre>Copyright (c) 2006-2018 Arseny Kapoulkine
|
||||
<pre>Copyright (c) 2006-2019 Arseny Kapoulkine
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
|
@ -717,7 +717,7 @@ OTHER DEALINGS IN THE SOFTWARE.</pre>
|
|||
<div class="literalblock">
|
||||
<div class="content">
|
||||
<pre>This software is based on pugixml library (https://pugixml.org).
|
||||
pugixml is Copyright (C) 2006-2018 Arseny Kapoulkine.</pre>
|
||||
pugixml is Copyright (C) 2006-2019 Arseny Kapoulkine.</pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1213,7 +1213,7 @@ Both <code>xml_node</code> and <code>xml_attribute</code> have the default const
|
|||
</div>
|
||||
<div class="paragraph">
|
||||
<p><a id="xml_attribute::comparison"></a><a id="xml_node::comparison"></a>
|
||||
<code>xml_node</code> and <code>xml_attribute</code> try to behave like pointers, that is, they can be compared with other objects of the same type, making it possible to use them as keys in associative containers. All handles to the same underlying object are equal, and any two handles to different underlying objects are not equal. Null handles only compare as equal to themselves. The result of relational comparison can not be reliably determined from the order of nodes in file or in any other way. Do not use relational comparison operators except for search optimization (i.e. associative container keys).</p>
|
||||
<code>xml_node</code> and <code>xml_attribute</code> try to behave like pointers, that is, they can be compared with other objects of the same type, making it possible to use them as keys in associative containers. All handles to the same underlying object are equal, and any two handles to different underlying objects are not equal. Null handles only compare as equal to null handles. The result of relational comparison can not be reliably determined from the order of nodes in file or in any other way. Do not use relational comparison operators except for search optimization (i.e. associative container keys).</p>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
<p><a id="xml_attribute::hash_value"></a><a id="xml_node::hash_value"></a>
|
||||
|
@ -3324,6 +3324,9 @@ You should use the usual bitwise arithmetics to manipulate the bitmask: to enabl
|
|||
<li>
|
||||
<p><a id="format_no_empty_element_tags"></a><code>format_no_empty_element_tags</code> determines if start/end tags should be output instead of empty element tags for empty elements (that is, elements with no children). This flag is <strong>off</strong> by default.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><a id="format_skip_control_chars"></a><code>format_skip_control_chars</code> enables skipping characters belonging to range [0; 32) instead of "&#xNN;" encoding. This flag is <strong>off</strong> by default.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
|
@ -5368,6 +5371,7 @@ If exceptions are disabled, then in the event of parsing failure the query is in
|
|||
<span class="tok-k">const</span> <span class="tok-kt">unsigned</span> <span class="tok-kt">int</span> <a href="#format_no_escapes">format_no_escapes</a>
|
||||
<span class="tok-k">const</span> <span class="tok-kt">unsigned</span> <span class="tok-kt">int</span> <a href="#format_raw">format_raw</a>
|
||||
<span class="tok-k">const</span> <span class="tok-kt">unsigned</span> <span class="tok-kt">int</span> <a href="#format_save_file_text">format_save_file_text</a>
|
||||
<span class="tok-k">const</span> <span class="tok-kt">unsigned</span> <span class="tok-kt">int</span> <a href="#format_skip_control_chars">format_skip_control_chars</a>
|
||||
<span class="tok-k">const</span> <span class="tok-kt">unsigned</span> <span class="tok-kt">int</span> <a href="#format_write_bom">format_write_bom</a>
|
||||
|
||||
<span class="tok-c1">// Parsing options bit flags:</span>
|
||||
|
@ -5767,7 +5771,7 @@ If exceptions are disabled, then in the event of parsing failure the query is in
|
|||
</div>
|
||||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated 2019-01-19 18:21:38 STD
|
||||
Last updated 2019-03-09 06:55:22 STD
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -1039,7 +1039,7 @@ XPath functions throw <code>xpath_exception</code> objects on error; the sample
|
|||
</div>
|
||||
<div class="literalblock">
|
||||
<div class="content">
|
||||
<pre>Copyright (c) 2006-2018 Arseny Kapoulkine
|
||||
<pre>Copyright (c) 2006-2019 Arseny Kapoulkine
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
|
@ -1069,7 +1069,7 @@ OTHER DEALINGS IN THE SOFTWARE.</pre>
|
|||
<div class="literalblock">
|
||||
<div class="content">
|
||||
<pre>This software is based on pugixml library (https://pugixml.org).
|
||||
pugixml is Copyright (C) 2006-2018 Arseny Kapoulkine.</pre>
|
||||
pugixml is Copyright (C) 2006-2019 Arseny Kapoulkine.</pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1083,7 +1083,7 @@ pugixml is Copyright (C) 2006-2018 Arseny Kapoulkine.</pre>
|
|||
</div>
|
||||
<div id="footer">
|
||||
<div id="footer-text">
|
||||
Last updated 2019-01-19 18:21:32 STD
|
||||
Last updated 2019-02-26 21:33:10 STD
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
|
Loading…
Add table
Reference in a new issue