toHtml展示内容(markdown转换后的内容)表情不能正常显示
(显示的时候没有转换为图片,仍旧只是代码)
头文件
JavaScript代码
$(document).ready(function() {
//代码转换为高亮显示
marked.setOptions({
renderer: new marked.Renderer(),
gfm: true,
tables: true,
breaks: true,
pedantic: false,
sanitize: false,
smartLists: false,
smartypants: false,
highlight: function (code) {
return hljs.highlightAuto(code).value;
}
});
//div内markdown代码转换为Html显示$("#blogMarkdownToHTMLContent").html(marked($("#blogMarkdownToHTMLContent").html()));
});
因为thinker-md打包的东西太多 我在转换html显示的时候就精简了,现在问题是转换后表情不能显示
需要引入哪些文件 并且能正常显示表情呢?需要写些什么初始代码呢 急