修复vditor文档搜索高亮文档不渲染的问题

This commit is contained in:
yangjian 2021-06-15 17:07:59 +08:00
parent 1e2e38e3a1
commit 66ee8c6dde
3 changed files with 6 additions and 1 deletions

View File

@ -5,6 +5,7 @@
- [新增]文档页面支持OGP协议
- [新增]后台站点设置文档长代码显示控制选项;
- [修复]开启「全站登录」后URL跳转异常的问题
- [修复]Vditor编辑器编写的文档搜索高亮文档不解析的问题
- [优化]用户禁止同名文集创建,文集下禁止同名文档创建;
- [优化]文集导出异常提示;
- [优化]Vditor文档目录样式

View File

@ -436,7 +436,9 @@ function initDocRender(mode){
// console.log('显示文档目录')
$(".tocMenu").show();
initSidebar('.sidebar', '.doc-content');
}
};
// 高亮搜索词
keyLight('doc-content',getQueryVariable("highlight"));
},
})
}else if(mode == 4){

View File

@ -395,7 +395,9 @@
});
});
// 高亮搜索词
{% if doc.editor_mode != 2 %}
keyLight('doc-content',getQueryVariable("highlight"))
{% endif %}
</script>
</body>
</html>