Questions tagged [tinymce-5]

TinyMCE is an open source WYSIWYG HTML editor that provides a modern rich text editing experience for web applications. Use this tag for questions regarding the usage of TinyMCE and its integration with CMSs and other web-based applications.

TinyMCE is an open source WYSIWYG HTML editor that provides a modern rich text editing experience for web applications. It is useful for developers who want a simple yet powerful way for users to create and edit HTML content online.

TinyMCE is integrated into thousands of open source and commercial applications such as:

  • Content management systems (CMSs)
  • Learning management systems (LMSs)
  • Customer relationship management (CRM) and marketing automation systems
  • Email marketing systems
  • Content creation in SaaS systems

Core features

In addition to basic formatting tools like bold, italic, underline, lists, and alignment, it provides a wide array of tools one would expect to find in the modern content creation apps like the ability to insert images, videos, tables, and spell checking. There’s also a range of additional features especially designed to assist with productivity, compliance and collaboration.

TinyMCE is highly configurable to cater for a range of use cases. It can be set up with lots of options and tools, or just a few, depending on whether you’re using it within, say, a chat client or a CMS. With 50+ powerful plugins available to developers, extending TinyMCE is as simple as including a single line of code. The look and feel can also be configured to match particular UIs and design systems.

It’s easily integrated with the most popular front-end frameworks, including , , , and .

Browser compatibility

TinyMCE is compatible with multiple browsers, including Internet Explorer, Firefox, Safari, Opera and Google Chrome, across multiple operating systems. TinyMCE 5.1 was specifically redesigned to provide an enhanced mobile experience for users.

API

TinyMCE includes an extensive API for developing custom plugins and integrations.

Useful links

304 questions
0
votes
2 answers

TinyMce v5 Custom Plugin

I'm trying to create a custom plugin for TinyMce. This is my code so far: (function() { var redactor = (function(domGlobals) { 'use strict'; var global = tinymce.util.Tools.resolve('tinymce.PluginManager'); var setupButtons =…
Roldan
  • 225
  • 2
  • 14
-1
votes
2 answers

TinyMCE 5 - How to control which buttons are shown in toolbar?

I have to remove some buttons from the tinyMCE 5 Editor. How can I control which buttons are being shown? I can't find anything in the documentation. This is my init code: tinymce.init({ selector: 'textarea.property_remark' ,branding: true …
Black
  • 18,150
  • 39
  • 158
  • 271
-2
votes
0 answers

How to Upgrade TinyMCE old version to new Version

I am using TinyMCE version 1 and need to upgrade that to version 6.Can you please provide all the steps to upgrade TinyMCE Editor upgradation from version 1 to version 6. Any help will be appreciated for upgrading version 1 to 6 of TinyMCE…
-4
votes
1 answer

How to trigger without any string in auto completion

We need a help on tinymce editor , we build a auto completion using https://www.tiny.cloud/docs/ui-components/autocompleter/#, but we need to change null trigger, we need to get auto suggestions on first Letter typing. Please help me to fix this…
1 2 3
20
21