You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parse result has all texts (Text1, Text2, Text3) combined into a single string that is available as the output of the data() function:
data="
Text1
Text2
Text3
"
and boost leaves no way to determine that <tag1> and <tag2> are in the middle of this text. tag1 and tag2 are available as separate keys, but this loses information about their location.
This XML:
parse result has all texts (Text1, Text2, Text3) combined into a single string that is available as the output of the
data()
function:and boost leaves no way to determine that
<tag1>
and<tag2>
are in the middle of this text.tag1
andtag2
are available as separate keys, but this loses information about their location.A larger practical example:
The line
<param len="4">const <ptype>GLfloat</ptype> *<name>v</name></param>
in https://raw.githubusercontent.com/KhronosGroup/OpenGL-Registry/master/xml/gl.xml can't be parsed usingproperty_tree/xml_parser
because the<ptype>
tag is between two text elements.The text was updated successfully, but these errors were encountered: