blob: 1fc4434160a781435c375ea81edb14421795b1d1 (
plain)
1
2
3
4
5
|
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>"};
}}}
};
|