You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I changed it to return returnText?.replace(/\n/g, '<br/>');
to replace all newlines with the <br /> and that seems to have fixed it but I haven't looked at escapeHTML (I would think it would parse the newlines properly but I guess not)
The text was updated successfully, but these errors were encountered:
Basically on the bookmark page it combines all the text into a large paragaph (but the activityPub post is still properly creating the newlines)
I think the issue is here:
postmarks/server.js
Lines 59 to 63 in 58d1ca1
I changed it to
return returnText?.replace(/\n/g, '<br/>');
to replace all newlines with the
<br />
and that seems to have fixed it but I haven't looked at escapeHTML (I would think it would parse the newlines properly but I guess not)The text was updated successfully, but these errors were encountered: