diff --git a/docs/content/2.usage/2.content.md b/docs/content/2.usage/2.content.md index 17313df37..9f73d2c49 100644 --- a/docs/content/2.usage/2.content.md +++ b/docs/content/2.usage/2.content.md @@ -25,6 +25,8 @@ Every markdown file should define properties in the front-matter in order to wor | `fullscreen` | `Boolean` | | Grows the page and hides the table of contents | | `menuTitle` | `String` | | Overwrites the title of the page that will be displayed in the left menu (defaults to `title`) | | `badge` | `String` | | Adds a badge next to the page title | +| `position` | `Number` | | Position of the page in the category, by default we use the filename prefix `POSITION.`, example: `1.first-page.md` | +| `draft` | `Boolean` | | Set the page as draft, will be displayed only in development, by default we use the filename suffix `.draft`, example: `3.my-draft-page.draft.md` | ### Example @@ -32,7 +34,6 @@ Every markdown file should define properties in the front-matter in order to wor --- title: 'Introduction' description: 'Empower your NuxtJS application with this awesome module.' -position: 1 category: 'Getting started' version: 1.4 fullscreen: false diff --git a/theme/components/dev-templates/DocusUI.vue b/theme/components/dev-templates/DocusUI.vue index 702f109cf..4fac240bb 100644 --- a/theme/components/dev-templates/DocusUI.vue +++ b/theme/components/dev-templates/DocusUI.vue @@ -1,7 +1,19 @@