How Plugins Improve The WYSIWYG Enhancing Expertise



Picture by JK_Studio from Pixabay

WYSIWYG editors are one of many core elements of any content material administration system (CMS). A well-coded, feature-filled WYSIWYG HTML editor can distinguish between a CMS customers love and one they can not stand. 

Whereas all WYSIWYG editors have a set of fundamental performance, the ability of plugins enhances the modifying expertise. Plugins permit WYSIWYG editors to do extra and supply superior options to customers. 

Due to this fact it is very important take a look at a number of the plugins that make some WYSIWYG editors rise above others. It’s additionally important to verify how simply you possibly can add these plugins. 

On this article, we’ll be taking you thru the world of WYSIWYG editors and plugins so as to take your customers’ modifying to the subsequent stage. 

Plugin Libraries

Froala supplies quite a few plugins obtainable for obtain on their web site:

An important WYSIWYG editor ought to present quite a few plugins which can be simple to incorporate and use. As a result of the extra plugins there are, the extra versatile the editor is and the extra use instances it could actually accommodate. 

Furthermore, the extra intuitive and developer-friendly plugins, the sooner the deployment is. 

The picture beneath reveals that WYSIWYG editors normally checklist plugins on their web sites and documentation. So, it received’t be troublesome for customers to search out the extra options they’re searching for.

Among the hottest and highly effective plugins are as follows: 

  • Draggable – Drag and drop your wealthy contents, from pictures to video, throughout the content material pane.
  • Code Beautifier – Visually improves the code formatting in content material, which is very essential for tech bloggers.
  • Recordsdata Supervisor – Distinctive plugin for managing pictures and different recordsdata.
  • Picture TUI – This lets you add filters and watermarks to the imagery on the fly.
  • Markdown Assist – Write and format content material with Markdown — an enormous time-saver for a lot of content material creators.
  • Spell and Grammar Checker – Guarantee customers that they’ll be capable of spot and proper grammatical and spelling errors as they kind.
  • Actual-time Collaboration – Let customers work collectively, create, overview, edit content material and point out others in real-time.

Utilizing Plugins

Let’s take a look at how one can add plugins to WYSIWYG editors. Typically, to get entry to a plugin, you solely must insert its JavaScript and CSS recordsdata:

<!-- Embody the Tables plugin CSS file -->
<hyperlink rel="stylesheet" href="https://davidwalsh.identify/css/plugins/desk.min.css">

<!-- Embody the Tables plugin JS file -->
<script src="../js/plugins/desk.min.js"></script>

Then, to incorporate the plugin in an editor occasion, add it to the pluginsEnabled key (or its equal in your most well-liked editor):

const editor = new FroalaEditor('#editor-element', {
    pluginsEnabled: ['table'],
    // ... extra config
});

That is all it takes to begin utilizing your chosen WYSIWYG editor plugins. You possibly can mess around with this wonderful drag-and-drop extension instance to see extra of how useful plugins are.

Creating Plugins

Some WYSIWYG editors let you create your plugins in a couple of easy steps. As an example, this can be a generic, diminished format code for making a plugin in an editor:

(perform (FroalaEditor) {
  // Add an possibility in your plugin.
  FroalaEditor.DEFAULTS = Object.assign(FroalaEditor.DEFAULTS, {
    myOption: false
  });

  // Outline the plugin.
  // The editor parameter is the present occasion.
  FroalaEditor.PLUGINS.myPlugin = perform (editor) {
    // Personal variable seen solely contained in the plugin scope.
    var private_var="My superior plugin";

    // Personal methodology that's seen solely inside plugin scope.
    perform _privateMethod () {
      console.log (private_var);
    }

    // Public methodology that's seen within the occasion scope.
    perform publicMethod () {
      console.log (_privateMethod());
    }

    // The beginning level in your plugin.
    perform _init () {
      // You possibly can entry any possibility from documentation or your customized choices.
      console.log (editor.opts.myOption)

      // Name any methodology from documentation.
      // editor.methodName(params);

      // You possibly can take heed to any occasion from documentation.
      // editor.occasions.add('contentChanged', (params) => {});
    }

    // Expose public strategies. If _init isn't public then the plugin will not be initialized.
    // Public methodology could be accessed by means of the editor API:
    // editor.myPlugin.publicMethod();
    return {
      _init,
      publicMethod,
    }
  }
})(FroalaEditor);

As you possibly can see, making your plugin could be fairly simple in construction ought to you will have the appropriate WYSIWYG editor.

Froala is an HTML editor with a library of plugins, making it a stable possibility for the WYSIWYG editor in your CMS. 

The present plugin repository comprises wonderful performance, and creating your plugin with Froala is straightforward. The Markdown modifying plugin alone is price it for writers like me!

So there you will have it. You’ve discovered about a number of the greatest plugins it is best to search for in a WYSIWYG editor, including and utilizing plugins in these editors, and even making your plugins. 

This ought to be sufficient so that you can take your customers’ content material modifying with a WYSIWYG editor to higher heights. 


Latest articles

Related articles

Leave a reply

Please enter your comment!
Please enter your name here