13 lines
396 B
C++
13 lines
396 B
C++
#include "utils.hpp"
|
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
|
|
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;
|
|
}
|