What's the correct way to apply multiple filters in Liquid output tags? 🔗
### Explanation
In Liquid, multiple filters are chained using the pipe character (|).
Key points:
- Filters are processed from left to right
- Each filter takes the output of the previous filter as input
- Some filters accept parameters after a colon (:)
Examples:
```liquid
{{ product.title | upcase }}
{{ product.title | upcase | truncate: 5 }}
{{ product.title | strip_html | truncatewords: 25 | capitalize }}
{{ product.price | money_with_currency | replace: 'USD', 'US' }}
```
Reference: [Shopify Liquid Filters](https://shopify.dev/docs/api/liquid/filters)
Answer Options:
- {{ product.title | upcase, truncate: 20 }}
- {{ product.title | upcase | truncate: 20 }}
- {{ product.title | upcase && truncate: 20 }}
- {{ product.title upcase truncate: 20 }}