{{ log.debug() }} {% if config.show_if_no_docstring or attribute.has_docstrings %}
{% with html_id = attribute.path.as_posix() %} {% if not root or config.show_root_heading %} {% if root %} {% set show_full_path = config.show_root_full_path %} {% set root_members = True %} {% elif root_members %} {% set show_full_path = config.show_root_members_full_path or config.show_object_full_path %} {% set root_members = False %} {% else %} {% set show_full_path = config.show_object_full_path %} {% endif %} {% filter heading(heading_level, role="data" if attribute.parent.kind.value == "module" else "attr", id=html_id, class="doc doc-heading", toc_label=attribute.name) %} {% filter highlight(language="vba", inline=True) %} {% if show_full_path %}{{ attribute.path.as_posix() }}{% else %}{{ attribute.name }}{% endif %} {% if attribute.annotation %}: {{ attribute.annotation }}{% endif %} {% if attribute.value %} = {{ attribute.value }}{% endif %} {% endfilter %} {% with labels = attribute.labels %} {% include "labels.html" with context %} {% endwith %} {% endfilter %} {% else %} {% if config.show_root_toc_entry %} {% filter heading(heading_level, role="data" if attribute.parent.kind.value == "module" else "attr", id=html_id, toc_label=attribute.path.as_posix(), hidden=True) %} {% endfilter %} {% endif %} {% set heading_level = heading_level - 1 %} {% endif %}
{% with docstring_sections = attribute.docstring.parsed %} {% include "docstring.html" with context %} {% endwith %}
{% endwith %}
{% endif %}