{% if title is defined -%} {{title}} {% else -%} Documentation {% endif -%}

{% for doc in autodoc %}
{{doc.rule|escape}}
    {% for method in doc.methods -%}
  • {{method}}
  • {% endfor %}
    {% for arg in doc.args %}
  • {{arg}} {{doc.defaults[arg]}}
  • {% endfor %}
{{doc.docstring|safe}}
{% endfor %}