Add External TinyMCE Plugins
Where additional customization is required, custom plugins can be loaded into TinyMCE.
-
-
Locate the property
externalPlugins
and modify the array to customize the external plugin configuration using the following resources: - Create a Plugin for TinyMCE.
- The external plugins customization syntax.
- Connections locations for selectively loading plugins.
Tip: If the external plugin array is empty (
externalPlugins: [],
), no external plugins will be loaded.
externalPlugins: [ { name: 'demo', url: '/connections/resources/web/tiny.demo/plugins/demo/plugin.min.js', on: ['wikis'] } ],
-
-
Related information