I have a template that calls the markdown template tag from the django.contrib.markup library. On my local system it works fine, but on the server, for some reason, the content|markdown call returns just the content, not marked up. No error is thrown in any of the logs, and TEMPLATE_DEBUG = True doesn't get me anything. I've put calls in the actual markdown() function, and they never get called. So my best guess is that for some reason the load markup call at the top of the template is failing.
Are there good ways to emulate the template environment and find out what's happening? Debugging tools? Things to look for?