summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/index.html4
-rw-r--r--src/pugixml.hpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/index.html b/docs/index.html
index a72a944..02c8ae9 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -240,11 +240,11 @@ be just skipped:</p>
<li>If <b>parse_pi</b> is on, then processing instructions (<b>&lt;? ... ?&gt;</b>) are put into DOM
tree (with node type <b>node_pi</b>, otherwise they are discarded. Note that for now the prolog
(&lt;?xml ... ?&gt;) is parsed as a processing instruction.
-<br>Default value: on
+<br>Default value: off
<br>In W3C mode: on</li>
<li>If <b>parse_comments</b> is on, then comments (<b>&lt;!-- ... --&gt;</b>) are put into DOM
tree (with node type <b>node_comment</b>, otherwise they are discarded.
-<br>Default value: on
+<br>Default value: off
<br>In W3C mode: on</li>
<li>If <b>parse_cdata</b> is on, then the content of CDATA section (<b>&lt;![CDATA[[ ... ]]&gt;</b>)
is put into DOM tree (with node type <b>node_cdata</b>, otherwise it is discarded.
diff --git a/src/pugixml.hpp b/src/pugixml.hpp
index 42a7950..009b10a 100644
--- a/src/pugixml.hpp
+++ b/src/pugixml.hpp
@@ -59,8 +59,8 @@ namespace pugi
const unsigned int parse_eol_cdata = 0x00004000; ///< Perform EOL handling in CDATA sections
const unsigned int parse_check_end_tags = 0x00010000; ///< Check start and end tag names and return error if names mismatch
const unsigned int parse_match_end_tags = 0x00020000; ///< Try to find corresponding start tag for an end tag
- ///< Set all flags, except parse_ws_pcdata and parse_trim_attribute
- const unsigned int parse_default = 0x00FFFFFF & ~parse_ws_pcdata & ~parse_trim_attribute;
+ ///< Set all flags, except parse_ws_pcdata, parse_trim_attribute, parse_pi and parse_comments
+ const unsigned int parse_default = 0x00FFFFFF & ~parse_ws_pcdata & ~parse_trim_attribute & ~parse_pi & ~parse_comments;
const unsigned int parse_noset = 0x80000000; ///< Parse with flags in xml_parser
const unsigned int parse_w3c = parse_pi | parse_comments | parse_cdata |