---
title: "Liquid filters: newline_to_br"
description: Converts newlines (`\n`) in a string to HTML line breaks (`
`).
api_name: liquid
source_url:
html: https://shopify.dev/docs/api/liquid/filters/newline_to_br
md: https://shopify.dev/docs/api/liquid/filters/newline_to_br.md
---
# newline\_to\_br
```oobleck
string | newline_to_br
```
returns [string](https://shopify.dev/docs/api/liquid/basics#string)
Converts newlines (`\n`) in a string to HTML line breaks (`
`).
```liquid
{{ product.description | newline_to_br }}
```
##### Code
```
{{ product.description | newline_to_br }}
```
##### Data
```
{
"product": {
"description": "
Just need a top up? Almost dead? In between? No need to worry because we have a range of sizes and strengths!
" } } ``` ## Output ```htmlJust need a top up? Almost dead? In between? No need to worry because we have a range of sizes and strengths!
```