{{ title }}
{% macro generate_doc(manual) %} {% for type, name, args, doc in manual %} {% set doc = wiki(doc) %} {% if type == 'submodule' %} {{ name }} {% set rv = manuals.append(load_module(name)) %} {% set rv = keywords(manual) %} {% elif type == 'module' %}module {{ name }}
{{ doc }}
{% elif type == 'class' %}
class {{name}}
{{ doc }}
{% elif type == 'method' %}
{{ name }}{{ args }}
{{ doc }}
{% elif type == 'function' and name[0] != '_' %}
def {{ name }}{{ args }}
{{ doc }}
{% endif %}
{% endfor %}