uiLibrary : string (materialdesign|bootstrap|bootstrap4)Default: 'materialdesign'

The name of the UI library that is going to be in use. Currently we support only Material Design and Bootstrap.

The css files for Bootstrap should be manually included to the page if you use bootstrap as uiLibrary.

Examples

Material Design

    
 <textarea id="editor"></textarea>
 <script>
     $('#editor').editor({ uiLibrary: 'materialdesign' });
 </script>

  

Bootstrap 3

    
 <textarea id="editor"></textarea>
 <script>
     $('#editor').editor({
         uiLibrary: 'bootstrap'
     });
 </script>

  

Bootstrap 4

    
 <textarea id="editor"></textarea>
 <script>
     $('#editor').editor({
         uiLibrary: 'bootstrap4'
     });
 </script>