mstch/test/data/section_functions_in_partials.hpp
2020-02-12 20:53:14 +01:00

5 lines
249 B
C++

const mstch::node section_functions_in_partials_data = mstch::map_wrapper{
{{"bold", mstch::lambda_wrapper{{[](const std::string& text) -> mstch::node {
return std::string{"<b>"} + text + std::string{"</b>"};
}}}}}};