1
0
forked from IPKM/nmreval

split data at given index

This commit is contained in:
dominik
2022-04-03 16:42:44 +02:00
parent e19d32b736
commit 531eac22b7
16 changed files with 190 additions and 227 deletions

View File

@ -4,27 +4,27 @@
.. autoclass:: {{ objname }}
{% block methods %}
{%- block methods %}
{% if methods %}
.. rubric:: {{ _('Methods') }}
{% for item in methods %}
{%- for item in methods %}
{% if not item.startswith('_') %}
.. automethod:: {{ item }}
{%- endif %}
{%- endfor %}
{% endif %}
{%- endif %}
{% endblock %}
{% block attributes %}
{% if attributes %}
{%- block attributes %}
{%- if attributes %}
.. rubric:: {{ _('Attributes') }}
{% for item in attributes %}
.. autoattribute:: {{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
{% endblock -%}
.. include:: {{ fullname }}.examples