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