Adds in the Xml plugin for CKEditor.

This is required by plugins that need xml plugin to work, like Emoji.

Other plugins can leverage xml by adding this in their plugin definition:

class YourButtonPlugin extends CKEditorPluginBase implements CKEditorPluginConfigurableInterface {
  /**
   * {@inheritdoc}
   */
  public function getDependencies(Editor $editor) {
    return ['xml'];
  }

  // more code...

Installation

  1. Download the plugin from http://ckeditor.com/addon/xml
  2. Place the plugin in the root libraries folder (/libraries).
  3. Enable Xml module in the Drupal admin.

Composer:

  1. Copy the following into your project's composer.json file.
  2. "repositories": [
      {
        "type": "package",
        "package": {
          "name": "ckeditor-plugin/xml",
          "version": "4.11.4",
          "type": "drupal-library",
          "dist": {
            "url": "https://download.ckeditor.com/xml/releases/xml_4.11.4.zip",
            "type": "zip"
          }
        }
      }
    ]
    
  3. Ensure you have following mapping inside your composer.json.
  4. "extra": {
      "installer-paths": {
        "web/libraries/{$name}": ["type:drupal-library"]
      }
    }
    
  5. Run following command to download required library.
  6.     composer require ckeditor-plugin/xml
     
  7. Enable the Xml module.
Supporting organizations: 

Project information

Releases