Add org to front matter formats
authorNiklas Fasching <niklas.fasching@gmail.com>
Mon, 17 Jun 2019 12:49:44 +0000 (14:49 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 10 Jul 2019 09:14:37 +0000 (11:14 +0200)
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.

docs/content/en/content-management/front-matter.md

index 4ff37400097f44d5e4f487c26ced09538de53d8f..37a51a12a3d800b23ac23e422b526a8403409ff8 100644 (file)
@@ -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 >}}