1.0.1 • Published 3 years ago

belcebur-editor v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Belcebur Plugin to CKEditor

Latex to human converter - How to Use

  1. Install dependency
npm i belcebur-editor --save
  1. Import dependency from your main file
import BelceburEditor from 'belcebur-editor'
  1. Add import to plugins array and add 'latexAccesible' to your toolbar array
ClassicEditor
    .create(document.querySelector('#editor'), {
        plugins: [Essentials, Paragraph, Bold, Italic,  BelceburEditor],
        toolbar: ['bold', 'italic', 'latexAccesible']
    })
    .then(editor => {
        console.log('Editor was initialized', editor);
    })
    .catch(error => {
        console.error(error.stack);
    });
  1. Enjoy it
1.0.1

3 years ago

1.0.0

3 years ago