What are you trying to achieve?
I want to pass text in JSON through HTTP → Make a Request without automatically adding escaped characters like \n. I need the lines to remain as real line breaks instead of being converted to \n in the final request.
Example of the expected JSON output:
json
Копировать
Редактировать
{
“message”: {
“LANG”: “RUS”,
“description”: "This is an example text with real line breaks:
- First line
- Second line
- Third line"
}
}
Right now, Make automatically converts line breaks into \n. How can I disable this behavior or send the text as a “clean” JSON without escaping the line breaks?
Thank you for your help!
Steps taken so far
I am receiving data from the GPT module. Then, I tried creating the JSON using different modules like Set Variable and JSON. Finally, I send the data through a Webhook.
However, instead of sending a simple multi-line text, I keep getting escaped line breaks (\n) and double escapes (\n\n).
I also tried formatting the text manually and using various functions to clean the output, but Make still adds the escape characters automatically.
How can I send a clean JSON with real line breaks instead of these escaped characters?