#include #include "mstch/mstch.hpp" #include "render_context.hpp" #include "utils.hpp" using namespace mstch; std::string mstch::render( const std::string& tmplt, const object& root_object, const std::map& partials) { return render_context(root_object, partials) .render(strip_whitespace(tmplt)); }