mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-10 14:01:22 -06:00
* Remove `jekyll-default-layout` plugin * Move docs/navigation-structure to docs/navigation * Fix uses of line-nos in md files * Update CHANGELOG.md --------- Co-authored-by: Matt Wang <matt@matthewwang.me>
22 lines
388 B
Markdown
22 lines
388 B
Markdown
---
|
|
title: Child Pages
|
|
parent: Navigation
|
|
nav_order: 4
|
|
---
|
|
|
|
# Child Pages
|
|
|
|
By default, all parent pages will automatically have a so-called 'Table of Contents' at the bottom, showing links to all their child pages.
|
|
|
|
To disable this automatic list, set `has_toc: false` in the parent page's front matter.
|
|
|
|
#### Example
|
|
|
|
```yaml
|
|
---
|
|
title: UI Components
|
|
nav_order: 3
|
|
has_toc: false
|
|
---
|
|
```
|