我正在尝试在我的 Jekyll 网站上的页面(不是帖子)上使用 Kramdown 的自动“目录”生成器。
_includes/toc.html
<nav>
<h4>Table of Contents</h4>
{:toc}
</nav>
my_cool_stuff/my_cool_page.md
---
layout: page
---
{% include toc.html %}
# The title of my page
## The Subtitle of my page
HTML 是按字面意思生成的,我没有得到标题列表。
<nav>
<h4 class="toc_title">On This Page</h4>
{:toc}
</nav>
我设置错了什么?