Syntax Highlighting in Django

I am currently working on a project with Django A Python web framework , It will be a pastebin application , all good pastebins have syntax highlighting … I just wanted to show you how I did it … it can be useful for other projects, 1 def syntax(value,extension): 2 from pygments.lexers import get_lexer_for_filename 3 [...]