{% macro new(headings) %}
    {%- for h in headings -%}
  1. {{ h.title }}
  2. {% if h.children %}{{ rfctoc::new(headings=h.children) }}{% endif %} {%- endfor -%}
{% endmacro %}