优化markd引用块的解析
parent
e179bf017a
commit
222f4d56eb
|
@ -363,6 +363,7 @@ class Tool {
|
||||||
if (head) {
|
if (head) {
|
||||||
isParagraph = false
|
isParagraph = false
|
||||||
html += head
|
html += head
|
||||||
|
// console.log(html)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -425,7 +426,10 @@ class Tool {
|
||||||
qlist += `<li>${tmp3}</li>`
|
qlist += `<li>${tmp3}</li>`
|
||||||
html += tmp1 + qlist
|
html += tmp1 + qlist
|
||||||
} else {
|
} else {
|
||||||
html += '<br>' + it
|
if (innerQuote === false) {
|
||||||
|
html += '<br>'
|
||||||
|
}
|
||||||
|
html += it
|
||||||
}
|
}
|
||||||
|
|
||||||
isParagraph = false
|
isParagraph = false
|
||||||
|
|
Reference in New Issue