From 52f6664fbfe1f7b56e94933ae66f13c265f2f9c8 Mon Sep 17 00:00:00 2001 From: dangered wolf Date: Mon, 29 Apr 2024 21:56:37 -0400 Subject: [PATCH] Fix community note formatting --- src/render/instantview.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/render/instantview.ts b/src/render/instantview.ts index 721ebfa..cbd6ac8 100644 --- a/src/render/instantview.ts +++ b/src/render/instantview.ts @@ -176,6 +176,7 @@ const generateStatusFooter = (status: APIStatus, isQuote = false, author: APIUse const generateCommunityNote = (status: APITwitterStatus): string => { if (status.community_note) { + console.log('community_note', status.community_note) const note = status.community_note; const entities = note.entities; entities.sort((a, b) => a.fromIndex - b.fromIndex); // sort entities by fromIndex @@ -195,7 +196,7 @@ const generateCommunityNote = (status: APITwitterStatus): string => { result += note.text.substring(lastToIndex, fromIndex); // Add the link - result += `${note.text.substring(fromIndex, toIndex)} `; + result += `${note.text.substring(fromIndex, toIndex)}`; lastToIndex = toIndex; }); @@ -206,7 +207,7 @@ const generateCommunityNote = (status: APITwitterStatus): string => { Readers added context they thought people might want to know - ${result} + ${result.replace(/\n/g, '\n
')} `;