Skip to content

Commit

Permalink
all: Updates required for v0.123.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmooring committed Feb 3, 2024
1 parent 9395743 commit 71f18fc
Show file tree
Hide file tree
Showing 29 changed files with 637 additions and 424 deletions.
16 changes: 8 additions & 8 deletions content/en/content-management/build-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ toc: true
aliases: [/content/build-options/]
---

Build options are stored in a reserved front matter object named `_build` with these defaults:
Build options are stored in a reserved front matter object named `build` with these defaults:

{{< code-toggle file=content/example/index.md fm=true >}}
[_build]
[build]
list = 'always'
publishResources = true
render = 'always'
Expand Down Expand Up @@ -85,7 +85,7 @@ Set the build options in front matter:

{{< code-toggle file=content/headless/index.md fm=true >}}
title = 'Headless page'
[_build]
[build]
list = 'never'
publishResources = false
render = 'never'
Expand Down Expand Up @@ -143,7 +143,7 @@ Set the build options in front matter, using the `cascade` keyword to "cascade"
{{< code-toggle file=content/headless/_index.md fm=true >}}
title = 'Headless section'
[[cascade]]
[cascade._build]
[cascade.build]
list = 'local'
publishResources = false
render = 'never'
Expand Down Expand Up @@ -201,10 +201,10 @@ Set the build options in front matter, using the `cascade` keyword to "cascade"

{{< code-toggle file=content/glossary/_index.md fm=true >}}
title = 'Glossary'
[_build]
[build]
render = 'always'
[[cascade]]
[cascade._build]
[cascade.build]
list = 'local'
publishResources = false
render = 'never'
Expand Down Expand Up @@ -247,7 +247,7 @@ Set the build options in front matter:

{{< code-toggle file=content/books/_index.md >}}
title = 'Books'
[_build]
[build]
render = 'never'
list = 'never'
{{< /code-toggle >}}
Expand Down Expand Up @@ -294,7 +294,7 @@ Set the build options in front matter, using the `cascade` keyword to "cascade"
{{< code-toggle file=content/internal/_index.md >}}
title = 'Internal'
[[cascade]]
[cascade._build]
[cascade.build]
render = 'never'
list = 'never'
[cascade._target]
Expand Down
Loading

0 comments on commit 71f18fc

Please sign in to comment.