We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the file http://pugixml.org/docs/manual.html#node_cdata the example line
<node> <![CDATA[[text1]]> <child/> <![CDATA[[text2]]> </node>
seems to contain two extra [ characters, i.e. should be
[
<node> <![CDATA[text1]]> <child/> <![CDATA[text2]]> </node>
instead.
The text was updated successfully, but these errors were encountered:
Changed issue to pull request.
Sorry, something went wrong.
docs: Fix CDATA example
a3a9d53
Fixes #61.
No branches or pull requests
In the file http://pugixml.org/docs/manual.html#node_cdata the example line
seems to contain two extra
[
characters, i.e. should beinstead.
The text was updated successfully, but these errors were encountered: