#include "utils.hpp" #include std::string mstch::html_escape(std::string str) { boost::replace_all(str, "&", "&"); boost::replace_all(str, "'", "'"); boost::replace_all(str, "\"", """); boost::replace_all(str, "<", "<"); boost::replace_all(str, ">", ">"); boost::replace_all(str, "/", "/"); return str; }