# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.liquiflow.app/liquid-attributes/other-liquid-tags.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
