section_as_context.hpp 346 B

12345678910
  1. const auto section_as_context_data = mstch::map{
  2. {"a_object", mstch::map{
  3. {"title", std::string{"this is an object"}},
  4. {"description", std::string{"one of its attributes is a list"}},
  5. {"a_list", mstch::array{
  6. mstch::map{{"label", std::string{"listitem1"}}},
  7. mstch::map{{"label", std::string{"listitem2"}}}
  8. }}
  9. }}
  10. };