|
|
|
@ -9,6 +9,7 @@ export function markdownToHTML(oldContent, selector) {
|
|
|
|
|
window.$('#md_div').html('')
|
|
|
|
|
// markdown to html
|
|
|
|
|
if (selector && oldContent && oldContent.startsWith('<p')) { // 普通html处理
|
|
|
|
|
window.$('#' + selector).addClass('renderAsHtml')
|
|
|
|
|
window.$('#' + selector).html(oldContent)
|
|
|
|
|
} else {
|
|
|
|
|
try {
|
|
|
|
|