question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

TinyMCE 6 missing plugins

See original GitHub issue

Hi there,

Rails 7 + esbuild app, I get an error after upgrading to tinyMCE 6 that print and paste plugins are missing.

import tinymce from 'tinymce' import 'tinymce/themes/silver/theme' import 'tinymce/icons/default/icons' import 'tinymce/plugins/autoresize' import 'tinymce/plugins/autolink' import 'tinymce/plugins/print' import 'tinymce/plugins/preview' import 'tinymce/plugins/anchor' import 'tinymce/plugins/paste' import 'tinymce/plugins/wordcount'

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:7 (4 by maintainers)

github_iconTop GitHub Comments

4reactions
lnewsoncommented, Mar 31, 2022

Oh, one other thing I should add is that if you are using a bundler then there is one other file you’ll need to include alongside the theme and icons:

import 'tinymce/models/dom/model'

This will be included in the TinyMCE 6 documentation we’re hoping to release soon.

1reaction
lnewsoncommented, Mar 31, 2022

@dmitrue I’d check your plugin configuration, as it’s likely using the “mixed” format consisting of an array and space separated names which was removed in 6.0. https://github.com/tinymce/tinymce/issues/7608 has some more details, but basically make sure it’s using either:

plugins: 'autoresize autolink lists'

or

plugins: [ 'autoresize', 'autolink', 'lists' ]
Read more comments on GitHub >

github_iconTop Results From Across the Web

Most common plugin errors in TinyMCE and how to fix them
TinyMCE Plugin error handling for upgrading to TinyMCE 6 · Open the tinymce. · Locate the PowerPaste plugin, and remove the plugin from...
Read more >
Deprecated features announcement: upcoming changes ...
In the next TinyMCE release, version 6.0, there are several plugins and configuration options changing, or facing deprecation.
Read more >
Plugin errors: fixing the most common error messages
To fix this error, you can remove the Premium plugins from your tiny.init configuration, or upgrade to a paid plan, depending on your...
Read more >
List of upcoming changes for TinyMCE 6 | Docs
List of upcoming changes for TinyMCE 6, including deprecated features. ... The following plugins will be removed in TinyMCE 6.0 and will need...
Read more >
TinyMCE not working: possible causes and fixes
There are a couple of possible reasons of TinyMCE not working - you can fix those easily and we prepared detailed instructions for...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found