diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2017-12-22 10:40:42 -0800 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2017-12-22 10:40:42 -0800 |
commit | cb7b78b0394c8cd88fa0e212a63c1a497272a088 (patch) | |
tree | ad5e1de74c7bab5cef723bde6693572d5d3dbd68 /docs/quickstart.adoc | |
parent | 257fbb4e1b09b0f1a6b2020ae2db190b87c8f9c7 (diff) |
docs: Fixed quickstart links
Fixes #176.
Diffstat (limited to 'docs/quickstart.adoc')
-rw-r--r-- | docs/quickstart.adoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quickstart.adoc b/docs/quickstart.adoc index 6e77a17..b7cb3b8 100644 --- a/docs/quickstart.adoc +++ b/docs/quickstart.adoc @@ -54,7 +54,7 @@ There is a special value of `xml_node` type, known as null node or empty node. I `xml_attribute` is the handle to an XML attribute; it has the same semantics as `xml_node`, i.e. there can be several `xml_attribute` handles pointing to the same underlying object and there is a special null attribute value, which propagates to function results. -There are two choices of interface and internal representation when configuring pugixml: you can either choose the UTF-8 (also called char) interface or UTF-16/32 (also called wchar_t) one. The choice is controlled via `PUGIXML_WCHAR_MODE` define; you can set it via `pugiconfig.hpp` or via preprocessor options. All tree functions that work with strings work with either C-style null terminated strings or STL strings of the selected character type. link:manual/dom.html#dom.unicode[Read the manual] for additional information on Unicode interface. +There are two choices of interface and internal representation when configuring pugixml: you can either choose the UTF-8 (also called char) interface or UTF-16/32 (also called wchar_t) one. The choice is controlled via `PUGIXML_WCHAR_MODE` define; you can set it via `pugiconfig.hpp` or via preprocessor options. All tree functions that work with strings work with either C-style null terminated strings or STL strings of the selected character type. link:manual.html#dom.unicode[Read the manual] for additional information on Unicode interface. [[loading]] == Loading document @@ -240,7 +240,7 @@ This is a simple example of custom writer for saving document data to STL string include::samples/save_custom_writer.cpp[tags=code] ---- -While the previously described functions save the whole document to the destination, it is easy to save a single subtree. Instead of calling `xml_document::save`, just call `xml_node::print` function on the target node. You can save node contents to C{plus}{plus} IOstream object or custom writer in this way. Saving a subtree slightly differs from saving the whole document; link:manual/saving.html#saving.subtree[read the manual] for more information. +While the previously described functions save the whole document to the destination, it is easy to save a single subtree. Instead of calling `xml_document::save`, just call `xml_node::print` function on the target node. You can save node contents to C{plus}{plus} IOstream object or custom writer in this way. Saving a subtree slightly differs from saving the whole document; link:manual.html#saving.subtree[read the manual] for more information. [[feedback]] == Feedback |