From 7c801a415017f9b9321ba025d87a6fb4e6982bad Mon Sep 17 00:00:00 2001 From: blob42 Date: Fri, 13 Jan 2023 03:31:39 +0100 Subject: [PATCH] better split between sections --- archive-cgpt-conv.user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archive-cgpt-conv.user.js b/archive-cgpt-conv.user.js index ff30823..4aeeae4 100644 --- a/archive-cgpt-conv.user.js +++ b/archive-cgpt-conv.user.js @@ -22,7 +22,7 @@ let markdown = '# ' + title + '\n'; let currentParticipant = 'Me'; for (let i = 0; i < messages.length; i++) { - markdown += currentParticipant + ': ' + messages[i].innerText + '\n---\n'; + markdown += currentParticipant + ': ' + messages[i].innerText + '\n\n---\n\n'; currentParticipant = currentParticipant === 'Me' ? 'GPT' : 'Me'; } const filename = title_save + '.md';