django-markdown-deux icon indicating copy to clipboard operation
django-markdown-deux copied to clipboard

A django app that provides Markdown-related template tags using the python-markdown2 library.

Results 29 django-markdown-deux issues
Sort by recently updated
recently updated
newest added

deployed my Django app to heroku. when I go to the admin to create a post from there I find markdown not showing up

Does this support table syntax, | column 1 | column 2 | | --- | --- | | data 1 | data 2 | etc. Also, any guidance on how...

Everything is working fine after installation, I am also using https://github.com/timmyomahony/django-pagedown for Admin. When I insert the images with URL links and do not use {{ article.description }} instead of...

Would it be possible to create an `includemd` template tag similar to the django `include` tag which is used to include fragments? For example, in a regular django template, I'd...

I pip-installed `django-markdown-deux` today and I got: ``` markdown2==2.3.2 django-markdown-deux==1.0.5 ``` Processing an `.md` file was broken however. Only the last ~=250 chars of the .md file seemed to get...

python-markdown2 will gets a new "toc_html", but how to use it in django-markdown-deux in templates.

I don't know if this project is being maintained any more, but I noticed that the "markdown_allowed" tag broke at some point between Django 1.7 and 1.10. I've made a...

When the `break-on-newline` setting is set to `True`, line breaks are inserted into lists. **settings.py** ``` python MARKDOWN_DEUX_STYLES = { "default": { "extras": { "break-on-newline": True, } } } ```...

``` [test](javascript:alert(1)) ``` # alert(1)

I've tried the MarkDown way for doing underlines # Hello ## Hello and neither works.