Steps to integrate the plugin in TinyMCE distribution:
- Download TinyMCE Editor;
- Read the documentation how to integrate in your site the editor from tinymce.moxiecode.com;
- Download the plugin from download area;
- Unzip the package
- Copy the folder FMathEditor to js/tinymce/plugins folder;
Change your html file:
ATENTION: There are 2 places to change: First is the list of plugins and second is in the menu;
tinymce.init({
selector: 'textarea',
height: 500,
theme: 'modern',
plugins: [
'advlist autolink lists link image charmap print preview hr anchor pagebreak',
'searchreplace wordcount visualblocks visualchars code fullscreen',
'insertdatetime media nonbreaking save table contextmenu directionality',
'emoticons template paste textcolor colorpicker textpattern imagetools codesample toc FMathEditor'
],
toolbar1: 'undo redo | insert | styleselect | bold italic | alignleft aligncenter alignright alignjustify
| bullist numlist outdent indent | link image',
toolbar2: 'print preview media | forecolor backcolor emoticons | codesample | FMathEditor'
});
|