docs: Convert code in multilingual.md to TOML
authorAsif Mehedi <asif.mehedi@live.com>
Thu, 22 Dec 2016 16:19:10 +0000 (22:19 +0600)
committerdigitalcraftsman <digitalcraftsman@users.noreply.github.com>
Thu, 22 Dec 2016 16:19:10 +0000 (17:19 +0100)
There was a mix of TOML and YAML in the first example config.

docs/content/content/multilingual.md

index 8ca82fc6da0999e1ee96ddd9f0fdb120f21a9c38..90ef90d29d5901b23a1c6fc361ed84d18fee89d1 100644 (file)
@@ -14,25 +14,26 @@ Hugo supports multiple languages side-by-side (added in `Hugo 0.17`). Define the
 Example:
 
 ```
-defaultContentLanguage = "en"
+DefaultContentLanguage = "en"
+copyright = "Everything is mine"
 
-Languages:
-  en:
-    weight: 1
-    title: "My blog"
-    params:
-      linkedin: "english-link"
-  fr:
-    weight: 2
-    title: "Mon blog"
-    params:
-      linkedin: "lien-francais"
-    copyright: "Tout est à moi"
+[Languages]
+[Languages.en]
+title = "My blog"
+weight = 1
+[Languages.en.params]
+linkedin = "english-link"
+
+[Languages.fr]
+copyright = "Tout est à moi"
+title = "Mon blog"
+weight = 2
+[Languages.fr.params]
+linkedin = "lien-francais"
 
-copyright: "Everything is mine"
 ```
 
-Anything not defined in a `[lang]:` block will fall back to the global
+Anything not defined in a `[Languages]` block will fall back to the global
 value for that key (like `copyright` for the English (`en`) language in this example).
 
 With the config above, all content, sitemap, RSS feeds, paginations