django-wysiwyg icon indicating copy to clipboard operation
django-wysiwyg copied to clipboard

A Django application for making Django textareas rich text editors. Certainly as a template tag and possibly as a form widget.

Results 17 django-wysiwyg issues
Sort by recently updated
recently updated
newest added

When using a normal TextField without **django-wysiwyg**, I can save my form perfectly fine, but when using **django-wysiwyg** I get an error "This field is required" on the TextField I...

Since https://github.com/html5lib/html5lib-python/pull/110 was merged, we get: ``` Traceback (most recent call last): File "/opt/django-icekit/icekit/plugins/text/tests.py", line 35, in test_sanitize_html5lib sanitized = sanitize_html(self.HTML1_ORIGINAL) File "/usr/local/lib/python2.7/dist-packages/django_wysiwyg/utils.py", line 41, in sanitize_html5lib from html5lib import...

Making a `TextField` to be wysiwig editable is quite unpleasant and unflexible with django-wysiwig. Especially making new admin templates. I would suggest something like: ``` class MassCommunicationAdmin(WysiwigAdminMixin, admin.ModelAdmin): list_display =...

I was trying to use the [limiter plugin](https://imperavi.com/redactor/plugins/limiter/) and got a "Uncaught TypeError: this.core.editor is not a function" in the chrome console. I figured the plugin was not up to...

How to make {% wysiwyg_editor "something" %} work by class, not by id?

The [django-bleach](https://bitbucket.org/ionata/django-bleach) app makes using [bleach](https://github.com/jsocol/bleach) extremely easy to use in Django projects. Bleach "an HTML sanitizing library that escapes or strips markup and attributes based on a white list"....

Hello, I'd like to kindly ask for adding wysihtml5 support. I'm too noob to do it myself :/ https://github.com/xing/wysihtml5 Thanks

enhancement

It seems like it only works with tinymce 3.0. with 4.0 lot of file names has been changed, which causes issue while using it with 4.0. any recommendation?

The title pretty much sums it up. Having to create your own demo site just to try out the available features/look/feel of the plugin wards off lazy skeptics like me.

bug
enhancement

The code is rather simple: **HTMLFormField** ``` class HTMLFormField(forms.CharField): """An html form field that handles the processing of html content from forms.""" def to_python(self, value): if value: value = sanitize_html(clean_html(value))...