I have a json file where I am accessing some data. Some of the nested data is prefixed with a $
. When I attempt to access it:
{{ range $.Site.Data.foo.feed }}
<div>{{ .author.$location }} - </div>
{{ end }}
I get an error about a bad character.
Is there a better way to access this key?
Thank you in advance.