\n
, but Rich Text Field expects HTML (<p>
, <br>
).\n
to <br>
or wrap text in <p></p>
.When sending form submissions from Webflow to the CMS using Make (formerly Integromat), line breaks in textarea fields (like a description box) often don't translate properly to a rich text field. Here’s how to ensure they display correctly:
\n
(new line characters).<p>
, <br>
, etc.).\n
into the Rich Text Field, Webflow may not interpret them correctly.\n
(newline) characters with <br>
(if you want single line breaks).<p></p>
for proper paragraph formatting.Example replacement:
"This is line one.\nThis is line two."
"This is line one.<br>This is line two."
\n
) is mapped to the Rich Text field.<br>
and <p>
tags render correctly.To properly display line breaks from a Webflow textarea into a Rich Text Field, use Integromat to replace \n
with <br>
or wrap text in <p>
tags before sending the data to Webflow’s CMS. This ensures the formatting is retained when displayed on your site.