Skip to content
Snippets Groups Projects

Issue #3388382: Numbered settings "none" renders as an OL instead of UL

@@ -39,7 +39,7 @@
{% macro tree_links(item) %}
{% import _self as toc_api_tree %}
{% if item.below_type %}
{% if item.below_type != "none" %}
<ol class="{{ item.below_type }}">
{% else %}
<ul>
@@ -54,7 +54,7 @@
</li>
{% endfor %}
{% if item.below_type %}
{% if item.below_type != "none" %}
</ol>
{% else %}
</ul>
Loading