jekyll-toc
jekyll-toc copied to clipboard
Can't use like this: {{ post.content | toc }}
{% if post.toc %}
{{ post.content | toc }}
{% else %}
{{ post.content }}
{% endif %}
This works for me in the post layout:
{% if page.toc %}
{{ content | toc }}
{% endif %}
Yes, it works in post layout. But if I use in a paginator I have to use like this:
{% for post in paginator.posts %}
{% if post.toc %}
{{ post.content | toc }}
{% else %}
{{ post.content }}
{% endif %}
{% endfor %}
It doesn't work.