This plugin adds paste as plain text and paste from Word icons to TinyMCE. This plugin was developed by Ryan Demmer and modified by the TinyMCE crew to be more general and some extra features where added.
On 25 May 2005, this plugin was modified by speednet: IE now pastes directly into the editor, bypassing the extra steps of opening the Insert box, selecting options, and clicking Insert. Speednet also added the Select All command, which highlights all the content in the editor when the user clicks the toolbar button (Other miscellaneous cleanup also).
Installation Instructions
- Copy the paste directory to the plugins directory of TinyMCE (/jscripts/tiny_mce/plugins).
- Add plugin to TinyMCE plugin option list example: plugins : "paste".
- Add the button names to button list, example: theme_advanced_buttons3_add : "pastetext,pasteword,selectall".
Initialization Example
tinyMCE.init({ theme : "advanced", mode : "textareas", plugins : "paste", theme_advanced_buttons3_add : "pastetext,pasteword,selectall", paste_create_paragraphs : false, paste_use_dialog : true, paste_auto_cleanup_on_paste : true, paste_convert_middot_lists : false, paste_unindented_list_class : "unindentedList", paste_convert_headers_to_strong : true });
Options
[paste_create_paragraphs] | If enabled double linefeeds are converted to paragraph elements when using the plain text dialog. This is enabled by default. |
[paste_use_dialog] | MSIE specific option, if you set this to false both Mozilla and MSIE will present a paste dialog. If you set it to true pasting in MSIE will be done directly. This option is set to false by default. |
[paste_auto_cleanup_on_paste] | MSIE specific option. If you enable this feature, a word paste will be executed when the user copy/paste content to the editor. This feature is disabled by default. |
[paste_convert_middot_lists] | If this feature is enabled middot lists are converted into UL lists, these will be assign a special class. |
[paste_unindented_list_class] | This option enables you to specify what class to assign to the UL list of middot converted lists. Middot lists are unindented in MS Office. This option defaults to "unIndentedList". |
[paste_convert_headers_to_strong] | This feature converts H1-6 elements to strong elements on paste, this is feature is disabled by default. |