I am starting to use CKEditor for an internal application where I want to take advantage of the spell checker but DO NOT want to generate HTML when I post the results of the textarea. I started to create a javascript "post-processor" to replace occurances of <p></p> & < (etc) but this is tedious and not foolproof. Has anyone created a DataProcessor that creates plain text? I have disabled the toolbar so that the user cannot bold/underline and all that stuff...
Fri, 12/17/2010 - 14:22
#1
Re: Plain text output needed
If you are using PHP on the server side, you could use "strip_tags()" on the textarea content.
Re: Plain text output needed