diff --git a/main.js b/main.js index d36a47f..fe7e10b 100644 --- a/main.js +++ b/main.js @@ -114,7 +114,8 @@ async function postToBluesky(text, images) { } function removeHtmlTags(input) { - return input.replace(/<[^>]*>/g, ""); + let res = input.replace("
", " "); + return res.replace(/<[^>]*>/g, ""); } function convertQuote(input) { return input.replace(/"/g, '"');