Context | Knowledge Center Site |
Need | Allow for pages with predefined styles to be added |
Feature | Support a template engine in combination with a set of stylesheets |
Requirement | Implement an editor for manipulating text, images, and tables without interfering with stylesheets' fonts, colors, alignments, and overall structure. |
There are a number of available WYSIWYG editors, such as
CKEditor[
^] and
TinyMCE[
^]. However, with their full spectrum of functionality, they are heavy-weight and detract from the predictability of the content layout. While a much simpler tool is required, it seems uneffective to implement one from scratch.
It was decided to use the ExtJS
Ext.form.HtmlEditor[
^] component as the system already uses the ExtJS framework. But in order for this to work, the component had to be configured correctly and extended to handle:
The copy and paste problem turns out to be a little tricky. There are a lot of bits and pieces of information on the web that, when collected, seemed random (and inconsistent):
clean-microsoft-word-pasted-text-using-javascript[
^]
JS (Server) removal of MS Word HTML/XML[
^]
Cleaning Word's Nasty HTML[
^]
MS Word Special Character Scrubber[
^]
I ended up refining and splitting the set into tag replacement and character replacement sets that work in the Ext HtmlEditor component (and do not interfere with its tags). Maybe somebody will find this information useful.
See also:
Introduction to Ranges[
^]
Intercepting the Clipboard data on Paste[
^]