diff --git a/output/index.md b/output/index.md
index 6a9b15d1..4ee71dfc 100644
--- a/output/index.md
+++ b/output/index.md
@@ -10,7 +10,7 @@ Proposed [Twitter (X) community notes](https://x.com/i/communitynotes/download-d
Note created |
Tweet |
- Note |
+ Note(s) |
Reason for note |
Tweet language |
Tweet status |
@@ -99,7 +99,11 @@ Proposed [Twitter (X) community notes](https://x.com/i/communitynotes/download-d
{
data: 'notes',
render: function (data, type, row, meta) {
- return data[0]['summary'];
+ var output = data[0]['summary'];
+ for (let i = 1; i < data.length; i++) {
+ output = output + '
' + data[i]['summary'];
+ }
+ return output;
}
},
{