aboutsummaryrefslogtreecommitdiffstats
path: root/filters
diff options
context:
space:
mode:
authorGravatar Ferry Huberts <ferry.huberts@pelagic.nl>2013-11-10 04:34:55 (JST)
committerGravatar Jason A. Donenfeld <Jason@zx2c4.com>2014-01-09 00:41:26 (JST)
commit09a28d761e1776329ec844916b72b8ae8c030e4b (patch)
tree35958a0e25d6a9545d6a72ecb4a9fe071f156ace /filters
parentd350d34da963943db25469a8567c24e5e9ff1386 (diff)
downloadcgit-09a28d761e1776329ec844916b72b8ae8c030e4b.zip
cgit-09a28d761e1776329ec844916b72b8ae8c030e4b.tar.gz
filters: highlight.sh: add css comments for highlight 2.6 and 3.8
v2: add highlight 3.13 as present on Fedora 19 Signed-off-by: Ferry Huberts <ferry.huberts@pelagic.nl>
Diffstat (limited to 'filters')
-rwxr-xr-xfilters/syntax-highlighting.sh64
1 files changed, 63 insertions, 1 deletions
diff --git a/filters/syntax-highlighting.sh b/filters/syntax-highlighting.sh
index 24f6bb4..4fa7928 100755
--- a/filters/syntax-highlighting.sh
+++ b/filters/syntax-highlighting.sh
@@ -9,7 +9,9 @@
9# 9#
10# Note: the highlight command (http://www.andre-simon.de/) uses css for syntax 10# Note: the highlight command (http://www.andre-simon.de/) uses css for syntax
11# highlighting, so you'll probably want something like the following included 11# highlighting, so you'll probably want something like the following included
12# in your css file (generated by highlight 2.4.8 and adapted for cgit): 12# in your css file:
13#
14# Style definition file generated by highlight 2.4.8, http://www.andre-simon.de/
13# 15#
14# table.blob .num { color:#2928ff; } 16# table.blob .num { color:#2928ff; }
15# table.blob .esc { color:#ff00ff; } 17# table.blob .esc { color:#ff00ff; }
@@ -24,6 +26,66 @@
24# table.blob .kwc { color:#000000; font-weight:bold; } 26# table.blob .kwc { color:#000000; font-weight:bold; }
25# table.blob .kwd { color:#010181; } 27# table.blob .kwd { color:#010181; }
26# 28#
29#
30# Style definition file generated by highlight 2.6.14, http://www.andre-simon.de/
31#
32# body.hl { background-color:#ffffff; }
33# pre.hl { color:#000000; background-color:#ffffff; font-size:10pt; font-family:'Courier New';}
34# .hl.num { color:#2928ff; }
35# .hl.esc { color:#ff00ff; }
36# .hl.str { color:#ff0000; }
37# .hl.dstr { color:#818100; }
38# .hl.slc { color:#838183; font-style:italic; }
39# .hl.com { color:#838183; font-style:italic; }
40# .hl.dir { color:#008200; }
41# .hl.sym { color:#000000; }
42# .hl.line { color:#555555; }
43# .hl.mark { background-color:#ffffbb;}
44# .hl.kwa { color:#000000; font-weight:bold; }
45# .hl.kwb { color:#830000; }
46# .hl.kwc { color:#000000; font-weight:bold; }
47# .hl.kwd { color:#010181; }
48#
49#
50# Style definition file generated by highlight 3.8, http://www.andre-simon.de/
51#
52# body.hl { background-color:#e0eaee; }
53# pre.hl { color:#000000; background-color:#e0eaee; font-size:10pt; font-family:'Courier New';}
54# .hl.num { color:#b07e00; }
55# .hl.esc { color:#ff00ff; }
56# .hl.str { color:#bf0303; }
57# .hl.pps { color:#818100; }
58# .hl.slc { color:#838183; font-style:italic; }
59# .hl.com { color:#838183; font-style:italic; }
60# .hl.ppc { color:#008200; }
61# .hl.opt { color:#000000; }
62# .hl.lin { color:#555555; }
63# .hl.kwa { color:#000000; font-weight:bold; }
64# .hl.kwb { color:#0057ae; }
65# .hl.kwc { color:#000000; font-weight:bold; }
66# .hl.kwd { color:#010181; }
67#
68#
69# Style definition file generated by highlight 3.13, http://www.andre-simon.de/
70#
71# body.hl { background-color:#e0eaee; }
72# pre.hl { color:#000000; background-color:#e0eaee; font-size:10pt; font-family:'Courier New',monospace;}
73# .hl.num { color:#b07e00; }
74# .hl.esc { color:#ff00ff; }
75# .hl.str { color:#bf0303; }
76# .hl.pps { color:#818100; }
77# .hl.slc { color:#838183; font-style:italic; }
78# .hl.com { color:#838183; font-style:italic; }
79# .hl.ppc { color:#008200; }
80# .hl.opt { color:#000000; }
81# .hl.ipl { color:#0057ae; }
82# .hl.lin { color:#555555; }
83# .hl.kwa { color:#000000; font-weight:bold; }
84# .hl.kwb { color:#0057ae; }
85# .hl.kwc { color:#000000; font-weight:bold; }
86# .hl.kwd { color:#010181; }
87#
88#
27# The following environment variables can be used to retrieve the configuration 89# The following environment variables can be used to retrieve the configuration
28# of the repository for which this script is called: 90# of the repository for which this script is called:
29# CGIT_REPO_URL ( = repo.url setting ) 91# CGIT_REPO_URL ( = repo.url setting )