JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q69782F
  • License GPL-3.0

MathML for CKEditor5 editor

Package Exports

  • @wiris/ckeditor5-mathml
  • @wiris/ckeditor5-mathml/src/conversion/mathmldataprocessor
  • @wiris/ckeditor5-mathml/src/mathml

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@wiris/ckeditor5-mathml) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

MathML support for CKEditor 5

This package extends the CKEditor 5 model to allow working with the MathML standard.

Install instructions

  1. Install the npm module:

    npm install @wiris/ckeditor5-mathml
  2. Update the CKEditor configuration by adding the plugin:

    import MathML from '@wiris/ckeditor5-mathml/src/mathml';
    
    ...
    
    ClassicEditor
         .create( editorElement, {
             plugins: [ ..., MathML, ... ],