> For the complete documentation index, see [llms.txt](https://help.accentuate.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.accentuate.io/metafield-definitions/fields/field-data-type/shopify-field-types/shopify-multi-line-text.md).

# Shopify » Multi-line text

A Shopify Multi-line text works similar to the ACF type Text (with its "Lines" setting set to more than 1 line).\
\
There is no functional difference, but the Liquid code has a new syntax. Being a Shopify data type, that returns a [Metafield object](https://shopify.dev/api/liquid/objects/metafield), the *value* property returns the actual value:

```liquid
<h3>{{ product.metafields.accentuate.subtitle.value }}</h3>
```

{% hint style="info" %}
A Shopify Multi-line text cannot store more than 65,535 characters (this includes any HTML tags)
{% endhint %}

### Storing HTML in a Multi line text field

Since the Shopify field types don't yet offer a 'html' option, we have made it possible to treat the Multi line text field as HTML:liquid

![](/files/XV5rtrBDQYd7OZcSZiF0)

With this setting enabled, you get the same editing functionality from ACF as for our [native HTML field type.](/metafield-definitions/create-a-metafield-definition/field-data-type/acf-field-types/html.md)
