disable escaping in mstch

This commit is contained in:
Thomas Avé 2017-01-02 16:51:14 +01:00
parent 7f276d7375
commit f2d4dc31e7
1 changed files with 3 additions and 0 deletions

View File

@ -33,6 +33,9 @@ namespace templ {
std::stringstream tmplt;
tmplt << file.rdbuf();
file.close();
mstch::config::escape = [](const std::string& str) -> std::string {
return str;
};
out << mstch::render(tmplt.str(),context);
}
}