mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-29 13:02:11 -05:00
19 lines
402 B
Markdown
19 lines
402 B
Markdown
---
|
|
title: plainify
|
|
description: Returns a string with all HTML tags removed.
|
|
categories: [functions]
|
|
menu:
|
|
docs:
|
|
parent: functions
|
|
keywords: [strings]
|
|
signature: ["plainify INPUT"]
|
|
relatedfuncs: [jsonify]
|
|
---
|
|
|
|
```go-html-template
|
|
{{ "<b>BatMan</b>" | plainify }} → "BatMan"
|
|
```
|
|
|
|
See also the `.PlainWords`, `.Plain`, and `.RawContent` [page variables][pagevars].
|
|
|
|
[pagevars]: /variables/page/
|