diff options
author | Ferry Huberts | 2013-11-09 20:34:55 +0100 |
---|---|---|
committer | Jason A. Donenfeld | 2014-01-08 16:41:26 +0100 |
commit | 09a28d761e1776329ec844916b72b8ae8c030e4b (patch) | |
tree | 35958a0e25d6a9545d6a72ecb4a9fe071f156ace | |
parent | Add AUTHORS file (diff) | |
download | cgit-09a28d761e1776329ec844916b72b8ae8c030e4b.tar.gz cgit-09a28d761e1776329ec844916b72b8ae8c030e4b.zip |
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>
-rwxr-xr-x | filters/syntax-highlighting.sh | 64 |
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 ) |