> 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/acf-field-types/text.md).

# Text

The value of custom fields of type Text is represented as you may expect - as Metafields with string values matching the value of their respective custom fields

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

If you need to display multi-line texts on your storefront, you can take advantage of the *newline\_to\_br* filter, so line breaks will be formatted correctly:

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