[SOLVED] Markdown pipe inside a template

Hello,
I just wondered if there is a markdown pipe to escape Markdown content inside a template?

I would like to do something like:

{{ with .Widget.content }}
{{ . | markdown }}
{{ end }}

If so, how to search it in the code?

Thanks!

Try markdownify – it is a template func and also mentioned in the doc.

OK, seen. Thanks!