We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cec52d1 + dcfa42d commit 5a7ba64Copy full SHA for 5a7ba64
web_src/js/features/repo-issue-edit.ts
@@ -132,7 +132,7 @@ async function tryOnQuoteReply(e: Event) {
132
const targetMarkupToQuote = targetRawToQuote.parentElement.querySelector<HTMLElement>('.render-content.markup');
133
let contentToQuote = extractSelectedMarkdown(targetMarkupToQuote);
134
if (!contentToQuote) contentToQuote = targetRawToQuote.textContent;
135
- const quotedContent = `${contentToQuote.replace(/^/mg, '> ')}\n`;
+ const quotedContent = `${contentToQuote.replace(/^/mg, '> ')}\n\n`;
136
137
let editor;
138
if (clickTarget.classList.contains('quote-reply-diff')) {
0 commit comments