{% with html_id = "project."+data.name %} {% filter heading(heading_level, role="functionblock", id=html_id, class="doc doc-heading", toc_label=data.name) %} {{data.name}} {% endfilter %} {% if data.extends %} EXTENDS {{data.extends}}{% endif %} {% if data.implements %} IMPLEMENTS {{', '.join(data.implements)}} {% endif %}
Source code in {{ data.filename }}{{ data.source_code|highlight(language="ST", inline=False) }}
{% for comment in data.comments %} {{comment}} {% endfor %} {% set heading_level = heading_level + 1 %} {% include 'InOutputSummary.html' %} {% if data.methods %}

Methods

{% endif %} {% if data.properties %}

Properties

{% endif %} {% if data.actions %}

Actions

{% endif %}
{% endwith %}