From 222f4d56eb44c3bcde8edadd02b380f2803d86ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=87=E5=A4=A9?= Date: Tue, 18 May 2021 11:00:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96markd=E5=BC=95=E7=94=A8?= =?UTF-8?q?=E5=9D=97=E7=9A=84=E8=A7=A3=E6=9E=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/markd/core.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/markd/core.js b/src/markd/core.js index a67feb8..43d2d8f 100644 --- a/src/markd/core.js +++ b/src/markd/core.js @@ -363,6 +363,7 @@ class Tool { if (head) { isParagraph = false html += head + // console.log(html) continue } @@ -425,7 +426,10 @@ class Tool { qlist += `
  • ${tmp3}
  • ` html += tmp1 + qlist } else { - html += '
    ' + it + if (innerQuote === false) { + html += '
    ' + } + html += it } isParagraph = false