django_markdown icon indicating copy to clipboard operation
django_markdown copied to clipboard

Django markdown support and wysiwig

Results 46 django_markdown issues
Sort by recently updated
recently updated
newest added

The main issue I fixed is that in the admin the Markdown textareas were very narrow, and there was no way to fix it from an application (without monkey patching)....

Return a string here will cause TypeError according to Django's doc: > context must be a dict rather than Context.

Hey It isn't working with latest django version 1.8, 1.9, 1.10 and 1.11 I have changed it to work with them. Create a new version of this package with this...

As far as I could see there is no way to protect myself from cross-site scripting with this extension, am I right? If so, the package documentation could at least...

I am using 1.9 and I cannot get the formatted mardown text to show in my template, but it works correctly in the preview. I have followed all the instructions....

Markdown widget’s media i.e. javascript and stylesheets are not getting added in admin after explicitly defining form_overrides in Django 1.10 `class Entry(models.Model): ... body = MarkdownField() .... from django_markdown.widgets import...

Hello, I tried to install this library on Django 1.9 and got such error in admin interface when tried to run preview. ``` Internal Server Error: /markdown/preview/ Traceback (most recent...

django_markdown/urls.py:8: RemovedInDjango110Warning: django.conf.urls.patterns() is deprecated and will be removed in Django 1.10. Update your urlpatterns to be a list of django.conf.urls.url() instances instead. '', url('preview/$', preview, name='django_markdown_preview')) ## --- Want...

The icons from the editor toolbar are not visible if the server is running on Windows. This can be fixed by replacing calls to `os.path.join` by `posixpath.join` in `widgets.py` ##...

I'm following [this tutorial](http://arunrocks.com/recreating-the-building-a-blog-in-django-screencast/) and I've followed the guide exactly. Still I'm unable to get the MarkdownModelAdmin functionality working (MarkdownField for text entry and a preview of the formatted markdown...