1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-12 01:50:52 +01:00

Fixed empty list in table of contents when no headline is defined

This commit is contained in:
squidfunk 2016-03-12 13:20:19 +01:00
parent bf227de93e
commit cf8e992c24
3 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@ mkdocs-material-0.2.1 (2016-03-12)
* Fixed #10: Invisible header after closing search bar with ESC key
* Fixed #13: Table cells don't wrap
* Fixed empty list in table of contents when no headline is defined
* Corrected wrong path for static asset monitoring in Gulpfile.js
* Set up tracking of site search for Google Analytics

View File

@ -16,7 +16,7 @@
{% if h1 %}
{% set toc = (toc | first).children %}
{% endif %}
{% if toc %}
{% if toc and (toc | first) %}
<ul>
{% for toc_item in toc %}
<li class="anchor">

View File

@ -33,7 +33,7 @@
{% endif %}
<!-- Render anchors of active page -->
{% if toc %}
{% if toc and (toc | first) %}
<ul>
{% for toc_item in toc %}