From 1c1d2c44693a41874a99f3e8c93dc4d74c3932a3 Mon Sep 17 00:00:00 2001 From: Simon Marquis Date: Mon, 16 Oct 2023 16:11:19 +0200 Subject: [PATCH] Fix typo in `Rich Markdown Pages` docs --- webdoc/docs/pages.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webdoc/docs/pages.md b/webdoc/docs/pages.md index 611d2fd..1892888 100644 --- a/webdoc/docs/pages.md +++ b/webdoc/docs/pages.md @@ -114,16 +114,16 @@ For example, if the the header is as follows: --- title: My special title bottles: - whine: 500 + wine: 500 beer: 123 --- ``` Then you can access the content of the YAML header in two ways: -1. By name e.g. `{{ title }}` and `{{ bottles.whine }}` +1. By name e.g. `{{ title }}` and `{{ bottles.wine }}` 1. Explicitly, i.e. using the dot notation, e.g. -`{{ page.meta.title }}` and `{{ page.meta.bottles.whine }}`. +`{{ page.meta.title }}` and `{{ page.meta.bottles.wine }}`. If used, the `title` variable will be used for the page's title and in the navigation of the website (unless specified in the config file). It does not alter the content of the page itself.