Separate escape characters of double quotted XML attribute value
This commit is contained in:
Filip Sykala 2022-03-02 08:15:26 +01:00
parent fdf8ebed7f
commit 4e97830c2b
4 changed files with 32 additions and 5 deletions

View file

@ -250,6 +250,7 @@ inline typename CONTAINER_TYPE::value_type& next_value_modulo(typename CONTAINER
}
extern std::string xml_escape(std::string text, bool is_marked = false);
extern std::string xml_escape_double_quotes_attribute_value(std::string text);
#if defined __GNUC__ && __GNUC__ < 5 && !defined __clang__