disable escaping in mstch
This commit is contained in:
parent
7f276d7375
commit
f2d4dc31e7
|
@ -33,6 +33,9 @@ namespace templ {
|
||||||
std::stringstream tmplt;
|
std::stringstream tmplt;
|
||||||
tmplt << file.rdbuf();
|
tmplt << file.rdbuf();
|
||||||
file.close();
|
file.close();
|
||||||
|
mstch::config::escape = [](const std::string& str) -> std::string {
|
||||||
|
return str;
|
||||||
|
};
|
||||||
out << mstch::render(tmplt.str(),context);
|
out << mstch::render(tmplt.str(),context);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue