- Author:
- badrunner
- Posted:
- September 15, 2007
- Language:
- Python
- Version:
- .96
- Score:
- 6 (after 6 ratings)
Replaces <code> blocks with syntax highlighted code. Use CSS to actually get the colours you want, look at pygments documentation for extracting css for various styles.
This snippet has the advantage of falling back on <pre> if anything goes wrong, and attempting to guess the syntax of code, falling back on python.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | from django import template
from pygments import highlight
from pygments.lexers import guess_lexer, PythonLexer
from pygments.formatters import HtmlFormatter
from BeautifulSoup import BeautifulSoup
register = template.Library()
@register.filter
def pygmentize(value):
try:
soup = BeautifulSoup(value)
code_blocks = soup.findAll('code')
for code in code_blocks:
try:
lexer = guess_lexer(code.string)
except ValueError:
lexer = PythonLexer()
code.replaceWith(highlight(code.string, lexer, HtmlFormatter()))
return str(soup)
except:
return value.replace('<code>', '<div class="highlight"><pre>').replace('</code>', '</pre></div>')
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.