You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var p = tweak(api.parameters.instance.plugins);
var tb = tweak(api.parameters.instance.toolbar);
var mb = tweak(api.parameters.instance.menubar);
var ppwi = tweak(api.parameters.instance.wordImport);
var pphi = tweak(api.parameters.instance.htmlImport);
api.window.startAutoResizer();
tinymce.init({
selector: "#editor",
plugins: p,
toolbar: tb,
menubar: mb,
min_height: 600,
max_height: 750,
autoresize_bottom_margin: 15,
resize: false,
image_caption: true,
powerpaste_word_import: ppwi,
powerpaste_html_import: pphi,
...
extension.json:
...
{
"id": "wordImport",
"name": "Word Import Type",
"type": "Symbol",
"default": "prompt",
"required": false,
"description": "This setting controls how content being pasted from Microsoft Word is filtered. Possible values: clean, merge, prompt"
},
{
"id": "htmlImport",
"name": "HTML Import Type",
"type": "Symbol",
"default": "clean",
"required": false,
"description": "This setting controls how content being pasted from sources other than Microsoft Word is filtered. Note that this includes content copied from TinyMCE itself. Possible values: clean, merge, prompt"
}
As described in
Allow for Contentful admins to change the default values (e.g. "merge") for HTML imports when using the PowerPaste feature.
The text was updated successfully, but these errors were encountered: