disable escaping in mstch
This commit is contained in:
parent
7f276d7375
commit
f2d4dc31e7
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue