Enable PU blogs to use <ul>

This commit is contained in:
davegson 2020-12-29 15:04:01 +01:00
parent 7e00be0aaa
commit 3b3b7a129f

View file

@ -104,6 +104,12 @@
<li>{{ li }}</li> <li>{{ li }}</li>
{% endfor %} {% endfor %}
</ol> </ol>
{% elsif tag.type == 'ul' %}
<ul>
{% for li in tag.lis %}
<li>{{ li }}</li>
{% endfor %}
</ul>
{% else %} {% else %}
<{{ tag.type }}>{{ tag.text }}</{{tag.type}}> <{{ tag.type }}>{{ tag.text }}</{{tag.type}}>
{% endif %} {% endif %}