diff --git a/docs/_docs/collections.md b/docs/_docs/collections.md index 2ec1dfb7..632a23fb 100644 --- a/docs/_docs/collections.md +++ b/docs/_docs/collections.md @@ -15,8 +15,8 @@ example here's a collection of staff members: collections: - staff_members ``` - -You can optionally specify metadata for your collection in the configuration: +In this case `collections` is defined as a sequence (i.e array) with no additional metadata defined for each collection. +You can optionally specify metadata for your collection by defining `collections` as a mapping (i.e hashmap) instead of sequence, and then defining additional fields in it: ```yaml collections: @@ -24,6 +24,10 @@ collections: people: true ``` +
+

When defining a collection as a sequence, it's pages will not be rendered by default. To enable this, output: true must be specified on the collection, which requires defining the collection as a mapping. For more information, see the section Output

+
+
Gather your collections {%- include docs_version_badge.html version="3.7.0" -%}