When I pull down an example line in the body via API I get something like this:
\n<p class=\"no-margin\"></p>\n<p class=\"no-margin\"><b>Can I add in other activities?</b></p>\n<p class=\"no-margin\">Not at this time. If this is a feature you would like, please send us a message.</p>
When I push that back up, it adds a new line to below the bolded text. This is also happening above lists as well, but only when it’s below a <p> class.
The output looks like this:
<b>Can I add in other activities?<b/>
Not at this time. If this is a feature you would like, please send us a message.
Where the intended output should be
<b>Can I add in other activities?</b>
Not at this time. If this is a feature you would like, please send us a message.
Is this a bug? Is there a way around this?