From 29ef3c657a51683e1fdd82016795f5c3873e6ee7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Weber?= Date: Fri, 7 Oct 2022 13:08:38 +0200 Subject: [PATCH] children: remove unused page parameter from docs #336 --- exampleSite/content/shortcodes/children/_index.en.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/exampleSite/content/shortcodes/children/_index.en.md b/exampleSite/content/shortcodes/children/_index.en.md index 8b3ec87dba..36339d3269 100644 --- a/exampleSite/content/shortcodes/children/_index.en.md +++ b/exampleSite/content/shortcodes/children/_index.en.md @@ -4,7 +4,7 @@ description = "List the child pages of a page" title = "Children" +++ -The `children` shortcode lists the child pages of a page and its descendants . +The `children` shortcode lists the child pages of the current page and its descendants . {{% children sort="weight" %}} ## Usage @@ -35,7 +35,6 @@ While the examples are using shortcodes with named parameter you are free to als | Name | Default | Notes | |:-------------------|:------------------|:------------| -| **page** | _<current>_ | Specify the page name (section name) to display children for. | | **containerstyle** | `ul` | Choose the style used to group all children. It could be any HTML tag name. | | **style** | `li` | Choose the style used to display each descendant. It could be any HTML tag name. | | **showhidden** | `false` | When `true`, child pages hidden from the menu will be displayed aswell. |