diff --git a/_includes/tocItem.html b/_includes/tocItem.html index ddea286..6f51c46 100644 --- a/_includes/tocItem.html +++ b/_includes/tocItem.html @@ -1,13 +1,13 @@ {% for item in toc %}
  • {% if item[1]._title %} - {{ item[1]._title }} + {{ item[1]._title | markdownify | remove: '

    ' | remove: '

    ' }}
    {% else %} - {{ item[1] }} + {{ item[1] | markdownify | remove: '

    ' | remove: '

    ' }}
    {% endif %}
  • {% endfor %} \ No newline at end of file diff --git a/_includes/tocSubItems.html b/_includes/tocSubItems.html index 485c20d..1970b64 100644 --- a/_includes/tocSubItems.html +++ b/_includes/tocSubItems.html @@ -2,13 +2,13 @@ {% if subItem[0] != "_title" %}
  • {% if subItem[1]._title %} - {{ subItem[1]._title }} + {{ subItem[1]._title | markdownify | remove: '

    ' | remove: '

    ' }}
    {% else %} - {{ subItem[1] }} + {{ subItem[1] | markdownify | remove: '

    ' | remove: '

    ' }}
    {% endif %}
  • {% endif %}