I have a field that contains markdown. When I display it in my templates I can just put in {{activity.activity_notes|markdown}}
to get it to format correctly. When it shows up in the Django admin, though, it is unfiltered and doesn't look nice.
I wrote a custom function to return compiled markdown, but when outputting it in Django admin it shows the literal html, tags and all. Is there a way I can set the output filter for a field in the Django admin interface?