1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-16 06:47:06 +01:00

Adding pdf generation capabilities

This commit is contained in:
Guido Cossu
2018-03-15 17:01:59 +00:00
parent 7c51dc07f1
commit 38f93f7e12
60 changed files with 5593 additions and 112 deletions

22
css/pygments/README.md Normal file
View File

@ -0,0 +1,22 @@
# pygments-css
[Pygments](http://pygments.org), 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.
You can generate these yourself, but this git repository has already generated them for you.
build
-----
These css files were generated using pygmentize on the command line like so::
pygmentize -S default -f html -a .highlight > default.css
You can remove or change the top-level class by removing or modifying `-a .highlight` in the `makefile`.
To regenerate them all with whichever ``pygments`` version you are using, run
git clone <this repo>
cd pygments-css
make cssfiles