{%- for imp in src.findall('./Import') -%}
  • {%- if 'ref' in imp.attrib -%} {{ imp.attrib['ref'] }} {%- endif -%}
  • {%- endfor -%}
{%- for def in defn_tree recursive -%}
{{ def.tag.attrib['name'].upper() }}
{{ def.tag.attrib['name'] }}
{%- if def.tag.attrib['inherittype'] != 'local' %} {{ def.tag.attrib['inherittype'].upper() }} {%- endif %}
{{ def.tag.find('Signature').attrib['ret'] }} {{ def.tag.find('Signature').attrib['name'] }} {{ def.tag.find('Signature').attrib['param'] }}
{{ def.doc.firstline }}
{%- if loop.depth0 == 0 %}
{%- else %}
{%- endif %}
{{ def.doc.content }} {{ def.doc.param }} {{ def.doc.field }} {{ def.doc.return }} {%- for tag in def.doc %} {%- if tag not in ['content', 'firstline', 'param', 'return', 'field', 'parent'] %} {{ def.doc[tag] }} {%- endif %} {%- endfor %} {{ def.doc.parent }}
{%- endfor -%}