diff --git a/boards/static/js/thread.js b/boards/static/js/thread.js --- a/boards/static/js/thread.js +++ b/boards/static/js/thread.js @@ -38,7 +38,7 @@ function addQuickReply(postId) { var textToAdd = '>>' + postId + '\n\n'; var selection = window.getSelection().toString(); if (selection.length > 0) { - textToAdd += '> ' + selection; + textToAdd += '> ' + selection + '\n\n'; } var textAreaId = 'textarea';