forked from mirror/MrDoc
修复editormd编辑器英文引号自动渲染为中文引号的问题
This commit is contained in:
parent
211e3c7304
commit
1f81f60bfa
@ -2138,7 +2138,7 @@
|
||||
pedantic : false,
|
||||
sanitize : (settings.htmlDecode) ? false : true, // 关闭忽略HTML标签,即开启识别HTML标签,默认为false
|
||||
smartLists : true,
|
||||
smartypants : true
|
||||
smartypants : false
|
||||
};
|
||||
|
||||
marked.setOptions(markedOptions);
|
||||
@ -3938,7 +3938,7 @@
|
||||
pedantic : false,
|
||||
sanitize : (settings.htmlDecode) ? false : true, // 是否忽略HTML标签,即是否开启HTML标签解析,为了安全性,默认不开启
|
||||
smartLists : true,
|
||||
smartypants : true
|
||||
smartypants : false
|
||||
};
|
||||
time_line += marked(item,markedOptions)
|
||||
}
|
||||
@ -4381,7 +4381,7 @@
|
||||
pedantic : false,
|
||||
sanitize : (settings.htmlDecode) ? false : true, // 是否忽略HTML标签,即是否开启HTML标签解析,为了安全性,默认不开启
|
||||
smartLists : true,
|
||||
smartypants : true
|
||||
smartypants : false
|
||||
};
|
||||
|
||||
markdownDoc = new String(markdownDoc).toString();
|
||||
|
Loading…
Reference in New Issue
Block a user