mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 02:20:54 +01:00
Fix community note formatting
This commit is contained in:
parent
22e3334a35
commit
52f6664fbf
1 changed files with 3 additions and 2 deletions
|
@ -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>`;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue