JSFiddle - React, Tailwind, and code Playground

by xilibit

HTML

<script src="https://cdn.ckeditor.com/4.15.0/full-all/ckeditor.js"></script>
<div id="editor">
	Lorem [b]ipsum[/b] 
</div>

JavaScript

CKEDITOR.replace( 'editor', {
	extraPlugins: 'notification'
} );

 CKEDITOR.plugins.add( 'myplugin', {
	icons: 'polls',
	init: function( editor ) {
		editor.addCommand( 'myplugin', new CKEDITOR.dialogCommand( 'mypluginDialog' ) );
		editor.ui.addButton( 'Myplugin', {
			label: 'My plugin',
			command: 'myplugin',
			toolbar: 'others'
		});

		CKEDITOR.dialog.add( 'mypluginDialog', this.path + 'dialogs/myplugin.js' );
	}
});