gpt4 book ai didi

javascript - Tinymce 预览插件 - 额外的正则表达式格式

转载 作者:行者123 更新时间:2023-11-28 08:25:27 31 4
gpt4 key购买 nike

我想知道是否有人知道使用预览插件打开 Tinymce 预览时添加额外格式的方法?

感谢

最佳答案

我试图找到相同的解决方案并发现了您的问题。

我查看了插件代码,没有找到任何钩子(Hook),为了解决这个问题,我用以下代码覆盖了预览插件的命令

// needed only if editor is not in the scope
var editor = tinymce.activeEditor;

// check if plugin is active for this instance
if (editor.getParam('plugins').match(/\bpreview\b/)) {
editor.addCommand('mcePreview', function() {
editor.windowManager.open({
// paste code from original "preview" plugin
// do your stuff here
// there's a "doc" variable avaliable
// which points to the iframe document in preview window
});
});
}

注意:我正在运行 TinyMCE 4

关于javascript - Tinymce 预览插件 - 额外的正则表达式格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22480877/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com