I’m following the directions in the “Data” documentation, and I receive the following error on my template:
ERROR: 2015/09/14 Error while rendering page post/post/second.md: reflect: call of reflect
I have the following content in content/data/User0123.yml
Name: User0123
"Short Description": "He is a **jolly good** fellow."
Achievements:
- "Can create a Key, Value list from Data File"
- "Learns Hugo"
- "Reads documentation"
In the template I use the following code:
<div>Short Description of {{.Site.Data.User0123.Name}}: <p>{{ index .Site.Data.User0123 "Short Description" | markdownify }}</p></div>