Files
liquid/filters/strip_html.md
2016-11-08 16:23:33 -05:00

385 B

title, description
title description
strip_html Liquid filter that removes HTML tags from a string.

Removes any HTML tags from a string.

Input

```liquid {% raw %} {{ "Have you read Ulysses?" | strip_html }} {% endraw %} ```

Output

```text {{ "Have you read Ulysses?" | strip_html }} ```