You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto t = crow::mustache::compile(R"---({{true_value}} and {{false_value}})---");
crow::mustache::context ctx;
ctx["true_value"] = true;
ctx["false_value"] = false;
auto result = t.render_string(ctx);
CHECK("true and false" == result);
results in a std::runtime_error "not implemented tag type..."
The expected boolean rendering can be seen in the Mustache demo page