1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-18 05:41:31 +00:00

Use liquid to determine whether to render ToC

This commit is contained in:
Cotes Chung
2020-12-28 00:14:10 +08:00
parent aa6c33526a
commit c381353f86
4 changed files with 15 additions and 23 deletions

View File

@@ -111,7 +111,15 @@ layout: default
</div> <!-- #post-wrapper -->
{% include panel.html %}
{% assign enable_toc = false %}
{% if site.toc and page.toc %}
{% if content contains '<h2' or content contains '<h3' %}
{% assign enable_toc = true %}
{% endif %}
{% endif %}
{% include panel.html toc=enable_toc %}
</div> <!-- .row -->