4

I am looking for a non-HTML Rich text editing solution.

Since I do not want to allow users to post HTML code from fear of various XSS reasons I implemented a Wiki Markup solution using MarkItUp which works great.

However, there is a loud demand for a real WYSIWYG Rich Text editing.

I found out that CKEditor can support external Custom Data Processors that theoretically can have it work with any markup language.

However, I couldn't find any implementation of such a Custom Processor...

Does anyone knows of such implementation (Wiki Markup or others: MarkDown, BBCode, etc.)?
Does anyone know of any other solution to the situation?

I would prefer a client side only solution but an Ajax based converter using a .Net based converter is also acceptable.

Thanks!

Variant
  • 17,279
  • 4
  • 40
  • 65
  • A basic BBCode plugin is available in the CKEditor package: http://nightly.ckeditor.com/latest/ckeditor/_samples/bbcode.html – AlfonsoML Oct 11 '11 at 12:31
  • 1
    This actually looks pretty good, post it as an answer so I can accept it. – Variant Oct 11 '11 at 13:02

1 Answers1

4

A basic BBCode plugin is available in the CKEditor package: http://nightly.ckeditor.com/latest/ckeditor/_samples/bbcode.html

AlfonsoML
  • 12,634
  • 2
  • 46
  • 53