Tagged Questions

0
votes
1answer
16 views

Texments package not working on Ubuntu

I am trying to use the Texments Latex package on Ubuntu to do syntax highlighting. Texments is a wrapper around Pygments. I installed Texments and followed the steps to add the style file to the path. …
2
votes
0answers
101 views

Which tool to use to write a Technical article? [closed]

I am planning to write a technical article which will contain text, figures, pseudocode (algorithm) and actual code snippets. My main concern is the Code snippet part and I want really want good …
0
votes
2answers
23 views

Integrate Syntax Highlighter (Prettify, Pygments,..) with Plone

I'm actually challenged with documenting aspects/problems/usages of inherited source code to teach and train co-workers as well as to identify problems that should be future maintenance tasks... The …
1
vote
2answers
64 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 …
1
vote
2answers
86 views

Python library for syntax highlighting

Which Python library for syntax highlighting is the best one? I'm interested in things like supported languages, ease of use, pythonic design, dependencies, development status, etc.
1
vote
2answers
216 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 …
2
votes
3answers
203 views

Sensible python source line wrapping for printout

I am working on a latex document that will require typesetting significant amounts of python source code. I'm using pygments (the python module, not the online demo) to encapsulate this python in …
0
votes
3answers
87 views

How can I customize the output from pygments?

If I run a python source file through pygments, it outputs html code whose elements class belong to some CSS file pygments is using. Could the style attributes be included in the outputted html so …