From f2d4dc31e780b1e8644b8e437c7db9edd0a94c61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Av=C3=A9?= Date: Mon, 2 Jan 2017 16:51:14 +0100 Subject: [PATCH] disable escaping in mstch --- src/template.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/template.cpp b/src/template.cpp index 50a1bc0..2c0a4ec 100644 --- a/src/template.cpp +++ b/src/template.cpp @@ -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); } }