mstch/test/data/section_functions_in_partials.hpp
2015-05-05 14:15:47 +02:00

5 lines
205 B
C++

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