Fix community note formatting

This commit is contained in:
dangered wolf 2024-04-29 21:56:37 -04:00
parent 22e3334a35
commit 52f6664fbf
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -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
@ -206,7 +207,7 @@ const generateCommunityNote = (status: APITwitterStatus): string => {
<th><b>Readers added context they thought people might want to know</b></th>
</thead>
<tbody>
<th>${result}</th>
<th>${result.replace(/\n/g, '\n<br>')}</th>
</tbody>
</table>`;