Do your authors write in Word and want to paste directly into Matrix?
Well this requires a few extra steps,
1: paste the word content into another web page (code below)
2: press a button (if the user is using IE, there is a workaround for proper browsers)
3: press the code view button in the editor
4: paste the text into the editor
5: press the code view button in the editor
</script> <style> #textToClean, #cleanedText {border: 3px solid #999; margin: 1em; padding: 1em;} </style> </head> <body onLoad="makeEditable()"> <p>Paste your content in the box below then <button type="button" onClick="fixWord()" id="cleanUpButton" >press this button</button> to process the text and for the cleaned up text in HTML format to be placed in your clipboard.</p> <h2>Word Text</h2> <div id="textToClean"> <p>Paste text in here</p> </div> <h2>Processed Text</h2> <div id="cleanedText"> <p>Once the text is processed you will see a preview here, you could cut and paste from here, but Internet Explorer misbehaves.</p></pre>