I spent a bit of time this evening putting together a template filter for Django that allows really trivial syntax coloring from within the templates themselves. You can access any of the Pygments lexers, or can attempt to have Pygments detect the appropriate lexer on its own. Here is a quick example: {% load syntax_color %} <p> Specifying the lexer for the snippet. </p> { { my_code_snippet|colori

