Tagged Questions
8
votes
5answers
366 views
Parsing a document with BeautifulSoup while not-parsing the contents of <code> tags
I'm writing a blog app with Django. I want to enable comment writers to use some tags (like <strong>, a, et cetera) but disable all others.
In addition, I want to let them put code in ...
4
votes
2answers
1k views
Syntax highlighting with Markdown & Pygments in Django
I've been trying to get syntax highlighting working in my simple Django (1.1) test app using Markdown (2.0.1) & Pygments (1.0). The idea is to generate HTML from the users input which is in ...
1
vote
0answers
130 views
Django/Textile/Pygments: " ' > being escaped
I have a blog written in django that I am attempting to add syntax highlighting to. The posts are written and stored in the database as textile markup. Here is how they are supposed to be rendered ...
1
vote
1answer
295 views
Django syntax highlighting causing character escaping issues
I've been working on my own django based blog (like everyone, I know) to sharpen up my python, and I thought added some syntax highlight would be pretty great. I looked at some of the snippets out ...