Hi there,
I’m trying to get shortcodes to work in my content files, but for some reason they keep render as-is (i.e. showing {{ $.Site.Data.params }}
instead of its value).
My layout file (layouts/_default/single.html):
<div id="page-wrapper">
{{.Content}}
</div>
My content file (at this point just trying out variables):
---
title: "Market Place"
---
{{ .Title }}
{{ $.Site.Data.params }}
{{ range 1 }}
test
{{ end }}