1.5.0 • Published 4 years ago

quill-mathlive-blot v1.5.0

Weekly downloads
14
License
GPL-3.0
Repository
github
Last release
4 years ago

npm npm bundle size npm GitHub Workflow Status GitHub GitHub last commit Maintenance

Quill-mathLive-blot

A Blot/Extension for Quill.js to embed editable formulas with mathLive.

Installation:

npm install quill-mathlive-blot

Usage:

  • import Quill
import mathLiveBlot from "quill-mathlive-blot";

var quill = new Quill('#editor-container', {
    modules: {
      toolbar: [
        ['bold', 'italic', 'underline'],
      ]
    },
    placeholder: '',
    theme: 'snow'
});

mathLiveBlot.register(Quill);

function insert() {
    let selection = quill.getSelection();
    quill.insertEmbed(selection.index, "mathLive", "");
}

Live Demo

1.5.0

4 years ago

1.4.1

4 years ago

1.4.0

4 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago