From 9e6d347db095277d72ec51528d5f430b14e33235 Mon Sep 17 00:00:00 2001 From: squidfunk <scifish@gmail.com> Date: Mon, 2 Jan 2017 08:57:19 +0100 Subject: [PATCH] Fix deprecation warning --- material/partials/nav-item.html | 6 +++--- material/partials/toc.html | 8 ++++---- src/partials/nav-item.html | 6 +++--- src/partials/toc.html | 8 ++++---- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/material/partials/nav-item.html b/material/partials/nav-item.html index 9453d04a..60f8b4f3 100644 --- a/material/partials/nav-item.html +++ b/material/partials/nav-item.html @@ -24,12 +24,12 @@ </li> {% elif nav_item == page %} <li class="md-nav__item"> - {% set toc = page.toc %} + {% set toc_ = page.toc %} <input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="toc"> {% if "\x3ch1 id=" in page.content %} - {% set toc = (toc | first).children %} + {% set toc_ = (toc_ | first).children %} {% endif %} - {% if toc and (toc | first) %} + {% if toc_ and (toc_ | first) %} <label class="md-nav__link md-nav__link--active" for="toc"> {{ nav_item.title }} </label> diff --git a/material/partials/toc.html b/material/partials/toc.html index b53be390..8177b0ff 100644 --- a/material/partials/toc.html +++ b/material/partials/toc.html @@ -1,12 +1,12 @@ <nav class="md-nav md-nav--secondary"> - {% set toc = page.toc %} + {% set toc_ = page.toc %} {% if "\x3ch1 id=" in page.content %} - {% set toc = (toc | first).children %} + {% set toc_ = (toc_ | first).children %} {% endif %} - {% if toc and (toc | first) %} + {% if toc_ and (toc_ | first) %} <label class="md-nav__title" for="toc">Table of contents</label> <ul class="md-nav__list" data-md-scrollfix> - {% for toc_item in toc %} + {% for toc_item in toc_ %} {% include "partials/toc-item.html" %} {% endfor %} </ul> diff --git a/src/partials/nav-item.html b/src/partials/nav-item.html index fe5f535d..0ffb600e 100644 --- a/src/partials/nav-item.html +++ b/src/partials/nav-item.html @@ -57,7 +57,7 @@ <!-- Currently active page --> {% elif nav_item == page %} <li class="md-nav__item"> - {% set toc = page.toc %} + {% set toc_ = page.toc %} <!-- Active checkbox expands items contained within nested section --> <input class="md-toggle md-nav__toggle" data-md-toggle="toc" @@ -65,11 +65,11 @@ <!-- Nasty hack - see partials/toc.html for more information --> {% if "\x3ch1 id=" in page.content %} - {% set toc = (toc | first).children %} + {% set toc_ = (toc_ | first).children %} {% endif %} <!-- Render table of contents, if not empty --> - {% if toc and (toc | first) %} + {% if toc_ and (toc_ | first) %} <label class="md-nav__link md-nav__link--active" for="toc"> {{ nav_item.title }} </label> diff --git a/src/partials/toc.html b/src/partials/toc.html index 21e9f2e2..264eea69 100644 --- a/src/partials/toc.html +++ b/src/partials/toc.html @@ -22,7 +22,7 @@ <!-- Table of contents --> <nav class="md-nav md-nav--secondary"> - {% set toc = page.toc %} + {% set toc_ = page.toc %} <!-- This is a nasty hack that checks whether the content contains a h1 @@ -31,14 +31,14 @@ anchor. Therefore we directly continue with the children of the anchor. --> {% if "\x3ch1 id=" in page.content %} - {% set toc = (toc | first).children %} + {% set toc_ = (toc_ | first).children %} {% endif %} <!-- Render item list --> - {% if toc and (toc | first) %} + {% if toc_ and (toc_ | first) %} <label class="md-nav__title" for="toc">Table of contents</label> <ul class="md-nav__list" data-md-scrollfix> - {% for toc_item in toc %} + {% for toc_item in toc_ %} {% include "partials/toc-item.html" %} {% endfor %} </ul> -- GitLab