github.com/jbramsden/hugo@v0.47.1/docs/content/en/functions/plainify.md (about)

     1  ---
     2  title: plainify
     3  linktitle: plainify
     4  description: Strips any HTML and returns the plain text version of the provided string.
     5  godocref:
     6  date: 2017-02-01
     7  publishdate: 2017-02-01
     8  lastmod: 2017-04-30
     9  categories: [functions]
    10  menu:
    11    docs:
    12      parent: "functions"
    13  keywords: [strings]
    14  signature: ["plainify INPUT"]
    15  workson: []
    16  hugoversion:
    17  relatedfuncs: [jsonify,]
    18  deprecated: false
    19  aliases: []
    20  ---
    21  
    22  ```
    23  {{ "<b>BatMan</b>" | plainify }} → "BatMan"
    24  ```
    25  
    26  See also the `.PlainWords`, `.Plain`, and `.RawContent` [page variables][pagevars].
    27  
    28  
    29  [pagevars]: /variables/page/
    30  
    31