YinBin 2c64e81a99 first commit 1 năm trước cách đây
..
README.rst 2c64e81a99 first commit 1 năm trước cách đây
UNLICENSE.txt 2c64e81a99 first commit 1 năm trước cách đây
autumn.css 2c64e81a99 first commit 1 năm trước cách đây
borland.css 2c64e81a99 first commit 1 năm trước cách đây
bw.css 2c64e81a99 first commit 1 năm trước cách đây
colorful.css 2c64e81a99 first commit 1 năm trước cách đây
default.css 2c64e81a99 first commit 1 năm trước cách đây
emacs.css 2c64e81a99 first commit 1 năm trước cách đây
friendly.css 2c64e81a99 first commit 1 năm trước cách đây
fruity.css 2c64e81a99 first commit 1 năm trước cách đây
github.css 2c64e81a99 first commit 1 năm trước cách đây
manni.css 2c64e81a99 first commit 1 năm trước cách đây
monokai.css 2c64e81a99 first commit 1 năm trước cách đây
murphy.css 2c64e81a99 first commit 1 năm trước cách đây
native.css 2c64e81a99 first commit 1 năm trước cách đây
package.json 2c64e81a99 first commit 1 năm trước cách đây
pastie.css 2c64e81a99 first commit 1 năm trước cách đây
perldoc.css 2c64e81a99 first commit 1 năm trước cách đây
tango.css 2c64e81a99 first commit 1 năm trước cách đây
trac.css 2c64e81a99 first commit 1 năm trước cách đây
vim.css 2c64e81a99 first commit 1 năm trước cách đây
vs.css 2c64e81a99 first commit 1 năm trước cách đây
zenburn.css 2c64e81a99 first commit 1 năm trước cách đây

README.rst

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, 'codehilite')
super(Entry, self).save()

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

.. _Pygments: http://pygments.org
.. _styles: http://dev.pocoo.org/projects/pygments/browser/pygments/styles

Theme previews
--------------

To preview the various themes, check out http://richleland.github.io/pygments-css/.