mirror of
https://github.com/gohugoio/hugoDocs.git
synced 2025-10-06 12:22:47 -04:00
25 lines
534 B
Markdown
25 lines
534 B
Markdown
---
|
|
title: markdownify
|
|
linktitle: markdownify
|
|
description: Runs the provided string through the Markdown processor.
|
|
godocref:
|
|
date: 2017-02-01
|
|
publishdate: 2017-02-01
|
|
lastmod: 2017-02-01
|
|
tags: [markdown,content]
|
|
categories: [functions]
|
|
ns:
|
|
signature: ["markdownify INPUT"]
|
|
workson: []
|
|
hugoversion:
|
|
relatedfuncs: []
|
|
deprecated: false
|
|
aliases: []
|
|
---
|
|
|
|
`markdownify` runs the provided string through the Markdown processor. The result will be declared as "safe" so Go/html templates do not filter it.
|
|
|
|
```
|
|
{{ .Title | markdownify }}
|
|
```
|