From 78546bb19533e4b4de3e2297b62d1e8cd391cb7a Mon Sep 17 00:00:00 2001 From: Andy Lulham Date: Sat, 8 Jun 2024 17:49:22 +0100 Subject: [PATCH] feat: show all notes --- output/index.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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; } }, {