We handle variable replacements elsewhere.

The markup parser needs to ignore them so they get rendered when we're
not doing replacement.
This commit is contained in:
Jeff Young
2022-02-15 23:05:22 +00:00
parent ab5489ad30
commit d9507dbaf4
2 changed files with 4 additions and 19 deletions
-2
View File
@@ -50,8 +50,6 @@ std::string NODE::typeString() const
else if( is_type<MARKUP::overbar>() ) os << "OVERBAR";
else if( is_type<MARKUP::anyString>() ) os << "ANYSTRING";
else if( is_type<MARKUP::anyStringWithinBraces>() ) os << "ANYSTRINGWITHINBRACES";
else if( is_type<MARKUP::varNamespaceName>() ) os << "VARNAMESPACENAME";
else if( is_type<MARKUP::varName>() ) os << "VARNAME";
else os << "other";
return os.str();