# Other Liquid Tags

Use `li-tag` to wrap a string within a Liquid tag `{% ... %}`*,* ideal for [assigning,](https://shopify.dev/docs/api/liquid/tags/assign) [incrementing](https://shopify.dev/docs/api/liquid/tags/increment), [decrementing](https://shopify.dev/docs/api/liquid/tags/decrement) or [capturing](https://shopify.dev/docs/api/liquid/tags/capture) a variable.

{% code title="Webflow" fullWidth="false" %}

```
li-tag = assign product_title = product.title | upcase
```

{% endcode %}

{% code title="Shopify" fullWidth="false" %}

```html
{% assign product_title = product.title | upcase %}
```

{% endcode %}

{% hint style="warning" %}
**Important:**

The div element that the `li-tag` is attached to gets replaced by the Liquid tag, so it cannott have any child elements. This is especially useful if you want to create more complex Liquid logic or want to use other Liquid tags from [Shopify’s documentation](https://shopify.dev/docs/api/liquid/tags/break).
{% endhint %}
