diff --git a/docs/content/templates/functions.md b/docs/content/templates/functions.md index 4d4d9332c..e35c35cdd 100644 --- a/docs/content/templates/functions.md +++ b/docs/content/templates/functions.md @@ -144,6 +144,13 @@ Declares the provided string as "safe" so Go templates will not filter it. e.g. {{ .Params.CopyrightHTML | safeHtml }} + +### markdownify + +This will run the string through the Markdown processesor. The result will be declared as "safe" so Go templates will not filter it. + +e.g. {{ .Title | markdownify }} + ### lower Convert all characters in string to lowercase.