mirror of
https://github.com/kemko/liquid.git
synced 2026-01-07 02:35:40 +03:00
385 B
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 }} ```