gpt4 book ai didi

javascript - tinyMCE 5 更改右键单击上下文菜单

转载 作者:行者123 更新时间:2023-12-02 22:52:03 27 4
gpt4 key购买 nike

我一直在选定的文本上添加内容工具栏。

但是,当您右键单击任意位置时,您将看到一个上下文菜单,其中包含一项“链接”。例如,我如何在此列表中添加 chammap 插件?我无法弄清楚这一点。

这是我到目前为止的代码:

tinymce.init({
branding : false,
content_css : '/css/tinymce_content.css',
language : 'nl',
menubar : false,
plugins : ['charmap fullscreen hr link lists paste tabfocus'],
relative_urls : false,
remove_script_host : false,
selector : '#' + alineaId,
style_formats: [
{title: 'Heading 2', format: 'h2'},
{title: 'Heading 3', format: 'h3'},
{title: 'Heading 4', format: 'h4'},
{title: 'Heading 5', format: 'h5'},
{title: 'Heading 6', format: 'h6'},
{title: 'Normal', block: 'p'}
],
toolbar : 'fullscreen | undo redo',
fullscreen_new_window : true,
fullscreen_settings : {
theme_advanced_path_location : 'top'
},
setup: function (editor) {
editor.ui.registry.addContextToolbar('textselection', {
predicate: function (node) {
return !editor.selection.isCollapsed();
},
items: 'bold italic | styleselect | link | bullist numlist',
position: 'selection',
scope: 'node'
});
}
});

这里是一个链接,其中还包含一个代码笔。右键单击编辑器,您将看到带有“链接”的上下文菜单,我想在其中添加 chammap 插件。

https://www.tiny.cloud/docs/ui-components/contextmenu/#

最佳答案

使用与工具栏相同的格式:

contextmenu: 'charmap undo | redo'

关于javascript - tinyMCE 5 更改右键单击上下文菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58149124/

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