From 0ad479eafa4fb66d9de7cfc2dda5a83417eee509 Mon Sep 17 00:00:00 2001 From: Adam DeHaven <2229946+adamdehaven@users.noreply.github.com> Date: Thu, 16 Oct 2025 09:02:29 -0400 Subject: [PATCH 1/2] docs: typo in migration.md about source definitions Corrected a typo in the migration documentation regarding file source definitions. --- docs/content/docs/1.getting-started/4.migration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/docs/1.getting-started/4.migration.md b/docs/content/docs/1.getting-started/4.migration.md index 945ad5a3e..514401b75 100644 --- a/docs/content/docs/1.getting-started/4.migration.md +++ b/docs/content/docs/1.getting-started/4.migration.md @@ -160,8 +160,8 @@ Many `ProsePre` components are thin wrappers around the `ProseCode` component. W In Content v3, we renamed `_dir.yml` to `.navigation.yml`. The new name better reflects the purpose of these files. Module uses these files to gather information about directories for generating navigation. -Note that in order to make these files available for Module, youe should define your collection's source in -a way that includes these files. For example `source: '**'` and `source: '**/*.{md|yml}` will include these files +Note that in order to make these files available for Module, you should define your collection's source in +a way that includes these files. For example `source: '**'` and `source: '**/*.{md|yml}'` will include these files in collection, but `source: '**/*.md'` will not include them. From f65ebd955aaeb5070be73d163549df7b3ace9318 Mon Sep 17 00:00:00 2001 From: Adam DeHaven <2229946+adamdehaven@users.noreply.github.com> Date: Thu, 16 Oct 2025 09:09:10 -0400 Subject: [PATCH 2/2] docs: use comma instead of pipe for proper syntax The pipe `|` character is not proper to allow for both file types --- docs/content/docs/1.getting-started/4.migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/docs/1.getting-started/4.migration.md b/docs/content/docs/1.getting-started/4.migration.md index 514401b75..c277d4f87 100644 --- a/docs/content/docs/1.getting-started/4.migration.md +++ b/docs/content/docs/1.getting-started/4.migration.md @@ -161,7 +161,7 @@ In Content v3, we renamed `_dir.yml` to `.navigation.yml`. The new name better r Module uses these files to gather information about directories for generating navigation. Note that in order to make these files available for Module, you should define your collection's source in -a way that includes these files. For example `source: '**'` and `source: '**/*.{md|yml}'` will include these files +a way that includes these files. For example `source: '**'` and `source: '**/*.{md,yml}'` will include these files in collection, but `source: '**/*.md'` will not include them.