Skip to content

Commit

Permalink
Merge pull request #36 from MCluck90/child-pages-docs
Browse files Browse the repository at this point in the history
docs(getting-started/organization/child-pages.md): change "path" to "source"
  • Loading branch information
mipatterson authored Nov 25, 2020
2 parents 1219ac0 + 9ac3392 commit a4759a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs-source/getting-started/organization/child-pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ To add a page as a child of another page, simply add the child page as an object
"pages": [
{
"title": "Parent Page",
"path": "./path/to/parent-page.md",
"source": "./path/to/parent-page.md",
"children": [
{
"title": "Child Page",
"path": "./path/to/child-page.md"
"source": "./path/to/child-page.md"
}
]
}
Expand All @@ -35,4 +35,4 @@ To add a page as a child of another page, simply add the child page as an object
}
```

The `children` property is optional. Not specifying a `children` property on your page definition is the same as specifying the property as an empty array.
The `children` property is optional. Not specifying a `children` property on your page definition is the same as specifying the property as an empty array.

0 comments on commit a4759a5

Please sign in to comment.