google-code-export / django-forum

Automatically exported from code.google.com/p/django-forum
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

MArkDown must be pre-installed? #84

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
If yes, maybe you want to state it in the how-to page too!

I couldn't run the forum with  out installing markdown first, and I got it here 
 (never used it 
before): http://www.freewisdom.org/projects/python-markdown/Installation

Although on the same site I read that markdown comes with django... in that 
case you might 
wanna change these lines:

try:
    from markdown import markdown
except ImportError:
    class MarkdownNotFound(Exception):
        def __str__(self):
            return "Markdown is not installed!"
    raise MarkdownNotFound

thanks!

Original issue reported on code.google.com by michele.pasin on 30 Oct 2009 at 1:35

GoogleCodeExporter commented 9 years ago
Hi Michele.
Those lines should not be removed because for example, on the server that I'm 
using
now for my clients (Webfaction) doesn't have Markdown installed, and it has a 
Django
installation in it.

I agree with you that it should be included in the How-To.

Original comment by byme...@gmail.com on 2 Nov 2009 at 11:54

GoogleCodeExporter commented 9 years ago
There is a line in the README.txt noting that python-markdown is required.

Original comment by rwpoul...@gmail.com on 25 Jan 2011 at 10:42