I'm using the flatpages app with markdown and on the (django) development server markdown works fine.
But when deployed on my staging server with apache/mod_python, all the markup vanish and I see the raw markdown formatting.
There's not much difference between my staging server and my dev server, both runs Ubuntu with the same packages installed (including python-markdown).
Also there is no errors at all, it just doesn't work. So I'm not sure were to start troubleshooting this issue ..
This is my template code:
{% extends "base.html" %}
{% load markup %}
{% block content %}
<h1>{{ flatpage.title }}</h1>
<div class="page">{{ flatpage.content|markdown }}</div>
{% endblock %}