Tagged Questions

14
votes
2answers
621 views

Syntax Highlighting with Pygments is failing via Liquid Templates String Error

I'm using Jekyll to convert my markdown and Pygments for syntax highlighting. Here is the error maruku displays: Liquid error: undefined method `join' for "\n song_info = []\n for song in songs:\n ...
8
votes
5answers
353 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 ...
6
votes
1answer
443 views

Is there a way in Sphinx/Pygments to emphasize one or more lines of code in literal includes?

In some sphinx docs I am writing, I am including code samples from an ancillary file like so: .. literalinclude:: mymodule.py :pyobject: MyClass :linenos: This particular doc is a tutorial, ...
2
votes
1answer
46 views

save Python script with formatting - special characters

I use pygmentize to save my Python script as rtf file (with propoer colors depends on keywords in syntax). Unfortunatelly program substitute special characters (ą,ę,ź,ć,ó) with strange symbols. Is ...
2
votes
1answer
207 views

Filter whitespace and newlines with Pygments

I've been trying to add syntax highlighting to my django site. The problem is I'm getting the &nbsp; and <br /> characters formatted as well. Is there a way to preserve these characterss? ...
2
votes
1answer
113 views

Pygments in wxPython?

Is it at all possible to use Pygments inside of wxPython to provide syntax highlighting?
2
votes
3answers
571 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 ...
1
vote
0answers
34 views

Python pygments and urwid.Edit widget(list with tuples)

I have a problem. I try to make an editor for the terminal. So I use urwid, since it supports both key and mouse events. My setup is to use a custom listwalker and one row Edit widget, and the caption ...
1
vote
0answers
125 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
359 views

Jython - using Pygments in Java project

I'm trying to use Pygments in Java project by including Jython.jar. In my Java project I have src/main/python source directory where I placed pygments files into pygments folder so they end up on the ...
1
vote
1answer
285 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
228 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
3answers
485 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 ...
0
votes
1answer
108 views

undefined method `highlight' Python+Pygments

I am using python 2.6.6 and Pygments version 1.4 on RHEL 6 i386 but always get this error message when I try to create a new project in gitlabhq. gem list reveals: pygments.rb (0.2.3), rubypython ...
0
votes
1answer
303 views

Pygments to latex better formatting for py code

I am trying to include python code in my lyx document by inserting a file. I began by trying to use listings but this was causing code to overflow pages. Now I'm using pygments setting it up as ...
0
votes
3answers
311 views

Using Pygments with PHP (Python in PHP)

Is it possible to use Python (specifically Pygments) with PHP? Currently, I have a phpBB forum that I'm developing for and JS Syntax Highlighters just haven't been working for me. There's already a ...