this repo has no description
at master 305 B view raw
1{% macro toc(headers) %} 2 <ol start="0"> 3 {%- for header in headers -%} 4 <li><a href="{{ header.permalink }}">{{ header.title }}</a> 5 {%- if header.children | length > 0 -%} 6 {{ self::toc(headers=header.children) }} 7 {%- endif -%} 8 </li> 9 {%- endfor -%} 10 </ol> 11{% endmacro toc %}