I have user generated context that extends multiple paragraphs. I'd like to enable the user to create paragraphs, possibly change font-weight, but nothing too huge.

I've seen a tutorial which uses the Python-Markdown module. Would anyone recommend this or should I just go with a WYSIWYG plugin? I've seen plugins for the admin but have not yet seen it applied to a general Django template.

Thanks Brendan

link|improve this question

79% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I have used django tiny-mce with tinymce in my comment app and is working. Defining plugins for this WYSIWYG editor is easy and comes only to specifying name of plugin in settings.py and JS file.

link|improve this answer
Hi Chris, I started with Ckedit but that has a PIL dependency. Unfortunately, I'm developing locally on a Win 64bit machine and PIL is a nightmare to install. I'll give this a try. Thanks! – Ben May 11 '11 at 0:14
Have a good luck :) – Cris May 11 '11 at 0:24
hmm, slight fail on my part. I followed the installation/configuration but I'm experiencing a js failure ('tinyMCE_GZ is not defined'). I've copied the js file into the appropriate location. The documentation is scant – Ben May 11 '11 at 0:42
Make sure that You have well configured tinymce in settings.py. – Cris May 12 '11 at 16:56
Or better show something more of error code and/or of your settings code. – Cris May 12 '11 at 17:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.