Navigation
{% macro _toc_tree_inner(toc) -%}
{% for toc_item in toc %}
- {{ toc_item.title }}
{{ _toc_tree_inner(toc_item.children) }}
{% endfor %}
{%- endmacro %}
{% macro toc_tree(toc) -%}
{# This ignores H1s #}
{% for toc_item in toc %}
{{ _toc_tree_inner(toc_item.children) }}
{% endfor %}
{%- endmacro %}
Table Of Contents