Contents
{% macro toc_item(item) %}
  • {{ item.label }} {%- if item.children|length > 0 %}
      {%- for child in item.children %} {{- toc_item(child) }} {%- endfor %}
    {%- endif %}
  • {%- endmacro %}
      {%- for item in toc %} {{ toc_item(item) }} {%- endfor %}