class Liquid::Filters::StripHtml
- Liquid::Filters::StripHtml
- Reference
- Object
Overview
strip_html
Removes any HTML tags from a string.
Input {% capture string_with_html %} Have you read Ulysses? {% endcapture %}
{{ string_with_html | strip_html }}
Output Have you read Ulysses?