Hi there,
I’m not thoroughly familiar with this, so this is most likely a simple issue to resolve.
I have a custom module that is configured in the params.yaml
file something like this
intro:
enable: true
title: Just the title
content: >
This is *markdown* text.
> This was supposed to be a quote.
On the template, I’m simply using markdownify
{{ .Site.Params.intro.content | markdownify }}
Most of the basic markdown works, such as the italic. However, the quote doesn’t seem to work for some reason, if the content comes from a configuration param.
Can anyone offer any insights? Pretty sure this is going to be a basic thing…