Which Liquid filter removes all HTML tags from a string? 🧹

### Explanation To remove HTML tags from a string in Liquid, use the `strip_html` filter: ```liquid {% assign html_text = "

Hello World!

" %} {{ html_text | strip_html }} ``` Key points: - Common string filters: - Can be chained: `{{ string | strip_html | strip | capitalize }}` - Useful for cleaning up rich text before display - Safe to use on strings without HTML Reference: [Shopify String Filters](https://shopify.dev/docs/api/liquid/filters#html-filters)

Answer Options:

  • | strip_html
  • | remove_html
  • | clean_html
  • | no_html
Shopify Free Test
← PreviousQuestion 1 of 1Finish →
00
← PreviousFinish →
Copyright ©Michael Bollin. Found some mistake?[email protected]