Browse Source

Update table-of-contents.md

index-subcmd
Vincent Prouillet GitHub 5 years ago
parent
commit
33d4cf14fd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      docs/content/documentation/content/table-of-contents.md

+ 2
- 2
docs/content/documentation/content/table-of-contents.md View File

@@ -5,7 +5,7 @@ weight = 60

Each page/section will automatically generate a table of contents for itself based on the headers present.

It is available in the template through `section.toc` and `page.toc`.
It is available in the template through the `toc` variable.
You can view the [template variables](./documentation/templates/pages-sections.md#table-of-contents)
documentation for information on its structure.

@@ -13,7 +13,7 @@ Here is an example of using that field to render a 2-level table of contents:

```jinja2
<ul>
{% for h1 in page.toc %}
{% for h1 in toc %}
<li>
<a href="{{h1.permalink | safe}}">{{ h1.title }}</a>
{% if h1.children %}


Loading…
Cancel
Save