diff options
author | August Feng <[email protected]> | 2023-11-25 22:33:02 -0500 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2024-01-25 19:34:12 +0100 |
commit | 46f618756f294d4eba7601c842b9926d006e9f9d (patch) | |
tree | 38dbfda9945144623c5f0ee1fb2ecf50559676d3 /docs | |
parent | 8915343075e1de2d175cbd5de467ab212da5a5b9 (diff) | |
download | hugo-46f618756f294d4eba7601c842b9926d006e9f9d.tar.gz hugo-46f618756f294d4eba7601c842b9926d006e9f9d.zip |
parser/metadecoders: Accumulate org keywords into arrays
Closes #11743
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/en/content-management/front-matter.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/en/content-management/front-matter.md b/docs/content/en/content-management/front-matter.md index dba67ba10..7593fb759 100644 --- a/docs/content/en/content-management/front-matter.md +++ b/docs/content/en/content-management/front-matter.md @@ -31,7 +31,7 @@ JSON ORG : a group of Org mode keywords in the format '`#+KEY: VALUE`'. Any line that does not start with `#+` ends the front matter section. - Keyword values can be either strings (`#+KEY: VALUE`) or a whitespace separated list of strings (`#+KEY[]: VALUE_1 VALUE_2`). + Array values can either be separated into multiple lines (`#+KEY: VALUE_1` and `#+KEY: VALUE_2`) or a whitespace separated list of strings (`#+KEY[]: VALUE_1 VALUE_2`). ### Example |