Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 989 Bytes

README.rst

File metadata and controls

20 lines (13 loc) · 989 Bytes

pygments-css

Pygments, a Python-based code highlighting tool, comes with a set of builtin styles (not css files) for code highlighting. You have to generate a CSS file using the command line. I just figured I'd save someone this work in the future and generate all the CSS files based on the Pygments builtins.

Pretty simple stuff here. These css files were generated using pygmentize on the command line like so:

pygmentize -S default -f html > default.css

I'm using a combination of Pygments and Markdown on a django project that has a model with the following save method:

def save(self):
    self.html = markdown(self.body, 'highlight')
    super(Entry, self).save()

That's why the CSS styles all have .highlight in front of them. You should change the .highlight to work with the style name that you use for your Pygments HTML output.