From 0f1d40f7e34a88fee5fb4c3e45049d7d37cc0f6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Ollivier?= Date: Mon, 20 Jun 2022 17:00:02 +0200 Subject: [PATCH] docs(get-started): minor fixes --- docs/content/2.get-started.md | 6 +++--- docs/content/3.guide/1.writing/6.csv.md | 2 -- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/content/2.get-started.md b/docs/content/2.get-started.md index 3f28a9d0f..62680da50 100644 --- a/docs/content/2.get-started.md +++ b/docs/content/2.get-started.md @@ -108,17 +108,17 @@ export default defineNuxtConfig({ ## Create content -Place your markdown files inside `content` directory in the root directory of your project. +Place your markdown files inside the `content/` directory in the root directory of your project. ```md [content/index.md] # Hello Content ``` -The module automatically load and parse all of them. +The module automatically loads and parses them. ## Render pages -To render content pages, you may wish to add a [catch-all route](https://v3.nuxtjs.org/guide/directory-structure/pages/#catch-all-route) using the `ContentDoc` component to do so: +To render content pages, add a [catch-all route](https://v3.nuxtjs.org/guide/directory-structure/pages/#catch-all-route) using the `ContentDoc` component: ```vue [pages/[...slug].vue]