# 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

![](https://3940270179-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FbIlmOfNwpXqPZMStJkgh%2Fuploads%2F3LnY2RYYBAYE9sChMmMZ%2FCleanShot%202021-11-08%20at%2013.03.58%402x.png?alt=media\&token=cd8087f2-89d2-4467-843e-90d14bb5d7fe)

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