summaryrefslogtreecommitdiffstats
path: root/docs/content/en/content-management/front-matter.md
diff options
context:
space:
mode:
authorNiklas Fasching <niklas.fasching@gmail.com>2019-06-17 14:49:44 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2019-07-10 11:14:37 +0200
commit020086cb2b0396909d831abf66b8f1455e6f7e6a (patch)
treea312965c578195097aa514bc3ddd95bda1c84646 /docs/content/en/content-management/front-matter.md
parent8524baee167fa6a8684569e7acff225c16c301c7 (diff)
Add org to front matter formats
actually it's 5, there's also csv. Afaict it's not meant to be used in that way though so let's just add org.
Diffstat (limited to 'docs/content/en/content-management/front-matter.md')
-rw-r--r--docs/content/en/content-management/front-matter.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/content/en/content-management/front-matter.md b/docs/content/en/content-management/front-matter.md
index 4ff374000..37a51a12a 100644
--- a/docs/content/en/content-management/front-matter.md
+++ b/docs/content/en/content-management/front-matter.md
@@ -23,7 +23,7 @@ toc: true
## Front Matter Formats
-Hugo supports three formats for front matter, each with their own identifying tokens.
+Hugo supports four formats for front matter, each with their own identifying tokens.
TOML
: identified by opening and closing `+++`.
@@ -34,6 +34,10 @@ YAML
JSON
: a single JSON object surrounded by '`{`' and '`}`', followed by a new line.
+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`).
+
### Example
{{< code-toggle >}}