Re: django 1.6.4 - markup / markdown (for django blog tutorial)

2014-05-05 Thread Alex Leonhardt
Thanks Brad - i had a look and didnt get it to work, but thanks to your hint I did get this to work : https://django-markup.readthedocs.org/en/latest/ with https://django-markup.readthedocs.org/en/latest/usage_templates.html Cheers! Alex On Monday, 5 May 2014 21:22:21 UTC+1, Brad Pitcher wro

Re: django 1.6.4 - markup / markdown (for django blog tutorial)

2014-05-05 Thread Brad Pitcher
django.contrib.markup has been deprecated. You could try using the standalone project that is a copy of the same code from django: pip install django_markup_deprecated Then add "markup_deprecated" to your INSTALLED_APPS instead of django.contrib.markup. - Brad Pitcher On Mon, May 5, 20

Re: django 1.6.4 - markup / markdown (for django blog tutorial)

2014-05-05 Thread Alex Leonhardt
fwiw - this is the tutorial I was trying : http://www.creativebloq.com/netmag/get-started-django-7132932 it mentions django.contrib.markup ... but that doesnt seem to work :\ On Monday, 5 May 2014 16:44:47 UTC+1, Alex Leonhardt wrote: > > Hi all, > > am new to django and followed a tiny tutori

django 1.6.4 - markup / markdown (for django blog tutorial)

2014-05-05 Thread Alex Leonhardt
Hi all, am new to django and followed a tiny tutorial to start off - I wanted to add the ability to use Markdown syntax in the blog posts. It was suggested to use django.contrib.markup, but that wont work anymore ( i guess it's been removed ) - what do I need to use Markdown in my posts ? Tha