docs: make the named value Data File example simpler
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 22 Jun 2015 18:25:17 +0000 (20:25 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 22 Jun 2015 18:25:17 +0000 (20:25 +0200)
docs/content/extras/datafiles.md

index acf7af6106242260d6c3e3133f1dad31aed0b766..65a0815214f692f0473cb9ecb0c13f0f8ff99c50 100644 (file)
@@ -88,7 +88,7 @@ Assuming you have the following YAML structure to your `User0123.yml` Data File
 
 ```
 Name: User0123
-"Short Description": "He is a jolly good fellow."
+"Short Description": "He is a **jolly good** fellow."
 Achievements:
   - "Can create a Key, Value list from Data File"
   - "Learns Hugo"
@@ -98,7 +98,7 @@ Achievements:
 To render the `Short Description` in your `layout` File following code is required.
 
 ```
-{{ $.Scratch.Set "ShortDesc" ( index $.Site.Data.User0123 "Short Description" ) }}
-<div>Short Description of {{.Site.Data.User0123.Name}}: <p>{{ $.Scratch.Get "ShortDesc" }}</p></div>
-{{ end }}
+<div>Short Description of {{.Site.Data.User0123.Name}}: <p>{{ index .Site.Data.User0123 "Short Description" | markdownify }}</p></div>
 ```
+
+Note the use of the `markdownify` template function. This will send the description through the Blackfriday Markdown rendering engine.
\ No newline at end of file