I am trying to create neat looking notes which are summaries of a chat gpt response, but something formats into a single line looking mess. I have tried /n and all the work arounds, nothing seems to work?
i would like to be able to have line breaks mainly buit i am unable to do so
If you're trying to add line breaks in notes sent via Make.com to HubSpot, use <br> tags instead of \n. HubSpot Notes API supports HTML formatting, so tags like <br>, <p>, and <strong> work, but raw \n does not.
In Make.com, use the replace() function to convert newlines like this: replace(ChatGPT_Response; "\n"; "<br>") Then map that result to the hs_note_body field in your HubSpot module.
If you're trying to add line breaks in notes sent via Make.com to HubSpot, use <br> tags instead of \n. HubSpot Notes API supports HTML formatting, so tags like <br>, <p>, and <strong> work, but raw \n does not.
In Make.com, use the replace() function to convert newlines like this: replace(ChatGPT_Response; "\n"; "<br>") Then map that result to the hs_note_body field in your HubSpot module.