mirror of
https://github.com/RPCS3/pugixml.git
synced 2026-01-31 01:25:21 +01:00
@@ -291,7 +291,7 @@ Here `"node"` element has three children, two of which are PCDATA nodes with val
|
||||
* Character data nodes ([[node_cdata]]`node_cdata`) represent text in XML that is quoted in a special way. CDATA nodes do not differ from PCDATA nodes except in XML representation - the above text example looks like this with CDATA:
|
||||
+
|
||||
----
|
||||
<node> <![CDATA[[text1]]> <child/> <![CDATA[[text2]]> </node>
|
||||
<node> <![CDATA[text1]]> <child/> <![CDATA[text2]]> </node>
|
||||
----
|
||||
+
|
||||
CDATA nodes make it easy to include non-escaped `<`, `&` and `>` characters in plain text. CDATA value can not contain the character sequence `]]>`, since it is used to determine the end of node contents.
|
||||
|
||||
@@ -1055,7 +1055,7 @@ In that example <code>PUGIXML_API</code> is inconsistent between several source
|
||||
<p>Character data nodes (<a id="node_cdata"></a><code>node_cdata</code>) represent text in XML that is quoted in a special way. CDATA nodes do not differ from PCDATA nodes except in XML representation - the above text example looks like this with CDATA:</p>
|
||||
<div class="listingblock">
|
||||
<div class="content">
|
||||
<pre><node> <![CDATA[[text1]]> <child/> <![CDATA[[text2]]> </node></pre>
|
||||
<pre><node> <![CDATA[text1]]> <child/> <![CDATA[text2]]> </node></pre>
|
||||
</div>
|
||||
</div>
|
||||
<div class="paragraph">
|
||||
@@ -5588,7 +5588,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 2015-10-19 00:10:05 PDT
|
||||
Last updated 2015-10-19 20:55:20 PDT
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user