Tagged Questions
1
vote
1answer
64 views
What are good methods for debugging a silently broken template tag?
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 ...
1
vote
3answers
549 views
Django templatetag for rendering a subset of html
I have some html (in this case created via TinyMCE) that I would like to add to a page. However, for security reason, I don't want to just print everything the user has entered.
Does anyone know of a ...