Skip to content

Latest commit

 

History

History
69 lines (58 loc) · 1.47 KB

custom-module-template.rst

File metadata and controls

69 lines (58 loc) · 1.47 KB

{{ fullname | escape | underline}}

{% block modules %} {% if modules %} .. rubric:: Modules

{% for item in modules %}

{% if "test" not in item %} {{ item }} {% endif %}

{%- endfor %} {% endif %} {% endblock %}

{{ fullname }}

{% block attributes %} {% if attributes %} .. rubric:: Module Attributes

{% for item in attributes %}

{{ item }}

{%- endfor %} {% endif %} {% endblock %}

{% block functions %} {% if functions %} .. rubric:: {{ _('Functions') }}

{% for item in functions %}

{{ item }}

{%- endfor %} {% endif %} {% endblock %}

{% block classes %} {% if classes %} .. rubric:: {{ _('Classes') }}

{% for item in classes %}

{{ item }}

{%- endfor %} {% endif %} {% endblock %}

{% block exceptions %} {% if exceptions %} .. rubric:: {{ _('Exceptions') }}

{% for item in exceptions %}

{{ item }}

{%- endfor %} {% endif %} {% endblock %}