Pre-subnode update.

This commit is contained in:
2023-07-10 12:04:34 -07:00
parent 835d5e5892
commit 1c7abbf140
3 changed files with 16 additions and 7 deletions

View File

@@ -22,6 +22,9 @@ int32_t VNTextParser::onParse(
struct VNText *out,
std::string *error
) {
std::cout << "TEST" << node->innerXml << std::endl;
out->language = values["lang"];
out->text = stringParser(node->innerXml, error);
return error->length() == 0 ? 0 : -1;