fix xml text escapes handling
This commit is contained in:
parent
f9f150f0aa
commit
53c54dc91d
@ -250,7 +250,8 @@ std::string Parser::parseText() {
|
||||
}
|
||||
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) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user