diff --git a/docs/manual.html b/docs/manual.html index ba051c9..8620392 100644 --- a/docs/manual.html +++ b/docs/manual.html @@ -687,7 +687,7 @@ No documentation is perfect; neither is this one. If you find errors or omission
-
Copyright (c) 2006-2018 Arseny Kapoulkine
+
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.
This software is based on pugixml library (https://pugixml.org).
-pugixml is Copyright (C) 2006-2018 Arseny Kapoulkine.
+pugixml is Copyright (C) 2006-2019 Arseny Kapoulkine.
@@ -1213,7 +1213,7 @@ Both xml_node and xml_attribute have the default const

-xml_node and xml_attribute 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).

+xml_node and xml_attribute 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).

@@ -3324,6 +3324,9 @@ You should use the usual bitwise arithmetics to manipulate the bitmask: to enabl

  • format_no_empty_element_tags 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 off by default.

  • +
  • +

    format_skip_control_chars enables skipping characters belonging to range [0; 32) instead of "&#xNN;" encoding. This flag is off by default.

    +
  • @@ -5368,6 +5371,7 @@ If exceptions are disabled, then in the event of parsing failure the query is in const unsigned int format_no_escapes const unsigned int format_raw const unsigned int format_save_file_text +const unsigned int format_skip_control_chars const unsigned int format_write_bom // Parsing options bit flags: @@ -5767,7 +5771,7 @@ If exceptions are disabled, then in the event of parsing failure the query is in
    diff --git a/docs/quickstart.html b/docs/quickstart.html index f07a842..1abc633 100644 --- a/docs/quickstart.html +++ b/docs/quickstart.html @@ -1039,7 +1039,7 @@ XPath functions throw xpath_exception objects on error; the sample
    -
    Copyright (c) 2006-2018 Arseny Kapoulkine
    +
    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.
    This software is based on pugixml library (https://pugixml.org).
    -pugixml is Copyright (C) 2006-2018 Arseny Kapoulkine.
    +pugixml is Copyright (C) 2006-2019 Arseny Kapoulkine.
    @@ -1083,7 +1083,7 @@ pugixml is Copyright (C) 2006-2018 Arseny Kapoulkine.