fix xml text escapes handling
This commit is contained in:
+2
-1
@@ -250,7 +250,8 @@ std::string Parser::parseText() {
|
|||||||
}
|
}
|
||||||
nextChar();
|
nextChar();
|
||||||
}
|
}
|
||||||
return std::string(source.substr(start, pos - start));
|
return Parser("<string>", std::string(source.substr(start, pos - start)))
|
||||||
|
.parseString('\0', false);
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool is_xml_identifier_start(char c) {
|
inline bool is_xml_identifier_start(char c) {
|
||||||
|
|||||||
Reference in New Issue
Block a user