devver-ultraviolet 0.10.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +25 -0
- data/Manifest.txt +233 -0
- data/README.txt +52 -0
- data/bin/theme2latexrender +122 -0
- data/bin/theme2xhtmlrender +156 -0
- data/bin/uv +140 -0
- data/lib/uv.rb +94 -0
- data/lib/uv/render_processor.rb +146 -0
- data/lib/uv/utility.rb +67 -0
- data/render/latex/active4d.render +132 -0
- data/render/latex/all_hallows_eve.render +96 -0
- data/render/latex/amy.render +171 -0
- data/render/latex/blackboard.render +111 -0
- data/render/latex/brilliance_black.render +552 -0
- data/render/latex/brilliance_dull.render +561 -0
- data/render/latex/cobalt.render +162 -0
- data/render/latex/dawn.render +126 -0
- data/render/latex/eiffel.render +132 -0
- data/render/latex/espresso_libre.render +123 -0
- data/render/latex/idle.render +93 -0
- data/render/latex/iplastic.render +99 -0
- data/render/latex/lazy.render +96 -0
- data/render/latex/mac_classic.render +135 -0
- data/render/latex/magicwb_amiga.render +117 -0
- data/render/latex/pastels_on_dark.render +204 -0
- data/render/latex/slush_poppies.render +123 -0
- data/render/latex/spacecadet.render +81 -0
- data/render/latex/sunburst.render +186 -0
- data/render/latex/twilight.render +153 -0
- data/render/latex/zenburnesque.render +126 -0
- data/render/old/txt2tags.render +131 -0
- data/render/xhtml/active4d.render +140 -0
- data/render/xhtml/all_hallows_eve.render +104 -0
- data/render/xhtml/amy.render +179 -0
- data/render/xhtml/blackboard.render +119 -0
- data/render/xhtml/brilliance_black.render +560 -0
- data/render/xhtml/brilliance_dull.render +569 -0
- data/render/xhtml/cobalt.render +170 -0
- data/render/xhtml/dawn.render +134 -0
- data/render/xhtml/eiffel.render +140 -0
- data/render/xhtml/espresso_libre.render +131 -0
- data/render/xhtml/files/css/active4d.css +114 -0
- data/render/xhtml/files/css/all_hallows_eve.css +72 -0
- data/render/xhtml/files/css/amy.css +147 -0
- data/render/xhtml/files/css/blackboard.css +88 -0
- data/render/xhtml/files/css/brilliance_black.css +605 -0
- data/render/xhtml/files/css/brilliance_dull.css +599 -0
- data/render/xhtml/files/css/cobalt.css +149 -0
- data/render/xhtml/files/css/dawn.css +121 -0
- data/render/xhtml/files/css/eiffel.css +121 -0
- data/render/xhtml/files/css/espresso_libre.css +109 -0
- data/render/xhtml/files/css/idle.css +62 -0
- data/render/xhtml/files/css/iplastic.css +80 -0
- data/render/xhtml/files/css/lazy.css +73 -0
- data/render/xhtml/files/css/mac_classic.css +123 -0
- data/render/xhtml/files/css/magicwb_amiga.css +104 -0
- data/render/xhtml/files/css/pastels_on_dark.css +188 -0
- data/render/xhtml/files/css/slush_poppies.css +85 -0
- data/render/xhtml/files/css/spacecadet.css +51 -0
- data/render/xhtml/files/css/sunburst.css +180 -0
- data/render/xhtml/files/css/twilight.css +137 -0
- data/render/xhtml/files/css/zenburnesque.css +91 -0
- data/render/xhtml/idle.render +101 -0
- data/render/xhtml/iplastic.render +107 -0
- data/render/xhtml/lazy.render +104 -0
- data/render/xhtml/mac_classic.render +143 -0
- data/render/xhtml/magicwb_amiga.render +125 -0
- data/render/xhtml/pastels_on_dark.render +212 -0
- data/render/xhtml/slush_poppies.render +131 -0
- data/render/xhtml/spacecadet.render +89 -0
- data/render/xhtml/sunburst.render +194 -0
- data/render/xhtml/twilight.render +161 -0
- data/render/xhtml/zenburnesque.render +134 -0
- data/syntax/actionscript.syntax +97 -0
- data/syntax/active4d.syntax +276 -0
- data/syntax/active4d_html.syntax +311 -0
- data/syntax/active4d_ini.syntax +50 -0
- data/syntax/active4d_library.syntax +21 -0
- data/syntax/ada.syntax +33 -0
- data/syntax/antlr.syntax +151 -0
- data/syntax/apache.syntax +191 -0
- data/syntax/applescript.syntax +384 -0
- data/syntax/asp.syntax +70 -0
- data/syntax/asp_vb.net.syntax +129 -0
- data/syntax/bibtex.syntax +151 -0
- data/syntax/blog_html.syntax +41 -0
- data/syntax/blog_markdown.syntax +42 -0
- data/syntax/blog_text.syntax +27 -0
- data/syntax/blog_textile.syntax +27 -0
- data/syntax/build.syntax +53 -0
- data/syntax/bulletin_board.syntax +287 -0
- data/syntax/cake.syntax +55 -0
- data/syntax/camlp4.syntax +36 -0
- data/syntax/cm.syntax +32 -0
- data/syntax/coldfusion.syntax +119 -0
- data/syntax/context_free.syntax +176 -0
- data/syntax/cs.syntax +59 -0
- data/syntax/css.syntax +195 -0
- data/syntax/css_experimental.syntax +1925 -0
- data/syntax/csv.syntax +68 -0
- data/syntax/d.syntax +142 -0
- data/syntax/diff.syntax +81 -0
- data/syntax/dokuwiki.syntax +204 -0
- data/syntax/dot.syntax +47 -0
- data/syntax/doxygen.syntax +43 -0
- data/syntax/dylan.syntax +62 -0
- data/syntax/eiffel.syntax +78 -0
- data/syntax/erlang.syntax +922 -0
- data/syntax/f-script.syntax +80 -0
- data/syntax/fortran.syntax +141 -0
- data/syntax/fxscript.syntax +142 -0
- data/syntax/greasemonkey.syntax +34 -0
- data/syntax/gri.syntax +83 -0
- data/syntax/groovy.syntax +191 -0
- data/syntax/gtd.syntax +22 -0
- data/syntax/gtdalt.syntax +143 -0
- data/syntax/haml.syntax +88 -0
- data/syntax/haskell.syntax +88 -0
- data/syntax/html-asp.syntax +27 -0
- data/syntax/html.syntax +362 -0
- data/syntax/html_django.syntax +36 -0
- data/syntax/html_for_asp.net.syntax +424 -0
- data/syntax/html_mason.syntax +119 -0
- data/syntax/html_rails.syntax +40 -0
- data/syntax/html_tcl.syntax +26 -0
- data/syntax/icalendar.syntax +32 -0
- data/syntax/inform.syntax +48 -0
- data/syntax/ini.syntax +55 -0
- data/syntax/installer_distribution_script.syntax +77 -0
- data/syntax/io.syntax +81 -0
- data/syntax/java.syntax +211 -0
- data/syntax/javaproperties.syntax +20 -0
- data/syntax/javascript.syntax +256 -0
- data/syntax/javascript_+_prototype.syntax +72 -0
- data/syntax/javascript_+_prototype_bracketed.syntax +140 -0
- data/syntax/jquery_javascript.syntax +114 -0
- data/syntax/json.syntax +136 -0
- data/syntax/languagedefinition.syntax +708 -0
- data/syntax/latex.syntax +566 -0
- data/syntax/latex_beamer.syntax +41 -0
- data/syntax/latex_log.syntax +50 -0
- data/syntax/latex_memoir.syntax +64 -0
- data/syntax/lexflex.syntax +219 -0
- data/syntax/lighttpd.syntax +54 -0
- data/syntax/lilypond.syntax +492 -0
- data/syntax/lisp.syntax +61 -0
- data/syntax/literate_haskell.syntax +24 -0
- data/syntax/logo.syntax +29 -0
- data/syntax/logtalk.syntax +152 -0
- data/syntax/lua.syntax +86 -0
- data/syntax/m.syntax +142 -0
- data/syntax/macports_portfile.syntax +163 -0
- data/syntax/makefile.syntax +36 -0
- data/syntax/man.syntax +17 -0
- data/syntax/mediawiki.syntax +567 -0
- data/syntax/mips.syntax +66 -0
- data/syntax/mod_perl.syntax +50 -0
- data/syntax/modula-3.syntax +47 -0
- data/syntax/moinmoin.syntax +189 -0
- data/syntax/mootools.syntax +572 -0
- data/syntax/movable_type.syntax +162 -0
- data/syntax/multimarkdown.syntax +39 -0
- data/syntax/objective-c++.syntax +18 -0
- data/syntax/objective-c.syntax +233 -0
- data/syntax/ocaml.syntax +764 -0
- data/syntax/ocamllex.syntax +167 -0
- data/syntax/ocamlyacc.syntax +184 -0
- data/syntax/opengl.syntax +14 -0
- data/syntax/pascal.syntax +77 -0
- data/syntax/perl.syntax +1115 -0
- data/syntax/plain_text.syntax +32 -0
- data/syntax/postscript.syntax +114 -0
- data/syntax/processing.syntax +106 -0
- data/syntax/prolog.syntax +40 -0
- data/syntax/property_list.syntax +635 -0
- data/syntax/python.syntax +868 -0
- data/syntax/python_django.syntax +21 -0
- data/syntax/qmake_project.syntax +114 -0
- data/syntax/qt_c++.syntax +26 -0
- data/syntax/quake3_config.syntax +32 -0
- data/syntax/r.syntax +81 -0
- data/syntax/r_console.syntax +16 -0
- data/syntax/ragel.syntax +201 -0
- data/syntax/rd_r_documentation.syntax +91 -0
- data/syntax/regexp.syntax +50 -0
- data/syntax/release_notes.syntax +46 -0
- data/syntax/remind.syntax +253 -0
- data/syntax/restructuredtext.syntax +250 -0
- data/syntax/rez.syntax +80 -0
- data/syntax/ruby.syntax +1035 -0
- data/syntax/ruby_experimental.syntax +145 -0
- data/syntax/ruby_on_rails.syntax +88 -0
- data/syntax/s5.syntax +69 -0
- data/syntax/scheme.syntax +347 -0
- data/syntax/scilab.syntax +41 -0
- data/syntax/setext.syntax +147 -0
- data/syntax/shell-unix-generic.syntax +384 -0
- data/syntax/slate.syntax +149 -0
- data/syntax/sql.syntax +237 -0
- data/syntax/sql_rails.syntax +18 -0
- data/syntax/ssh-config.syntax +33 -0
- data/syntax/standard_ml.syntax +121 -0
- data/syntax/strings_file.syntax +39 -0
- data/syntax/subversion_commit_message.syntax +36 -0
- data/syntax/sweave.syntax +84 -0
- data/syntax/swig.syntax +57 -0
- data/syntax/tcl.syntax +152 -0
- data/syntax/template_toolkit.syntax +121 -0
- data/syntax/tex.syntax +86 -0
- data/syntax/tex_math.syntax +49 -0
- data/syntax/textile.syntax +215 -0
- data/syntax/tsv.syntax +50 -0
- data/syntax/twiki.syntax +241 -0
- data/syntax/txt2tags.syntax +79 -0
- data/syntax/vectorscript.syntax +57 -0
- data/syntax/xhtml_1.0.syntax +4027 -0
- data/syntax/xml.syntax +180 -0
- data/syntax/xml_strict.syntax +92 -0
- data/syntax/xsl.syntax +60 -0
- data/syntax/yaml.syntax +160 -0
- data/syntax/yui_javascript.syntax +176 -0
- metadata +310 -0
@@ -0,0 +1,204 @@
|
|
1
|
+
---
|
2
|
+
name: Pastels on Dark
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: "{\\color[HTML]{555555}"
|
8
|
+
end: "}"
|
9
|
+
selector: comment
|
10
|
+
- begin: "{\\color[HTML]{555555}"
|
11
|
+
end: "}"
|
12
|
+
selector: comment.block
|
13
|
+
- begin: "{\\color[HTML]{AD9361}"
|
14
|
+
end: "}"
|
15
|
+
selector: string
|
16
|
+
- begin: "{\\color[HTML]{CCCCCC}"
|
17
|
+
end: "}"
|
18
|
+
selector: constant.numeric
|
19
|
+
- begin: "{\\color[HTML]{A1A1FF}"
|
20
|
+
end: "}"
|
21
|
+
selector: keyword
|
22
|
+
- begin: "{\\color[HTML]{2F006E}"
|
23
|
+
end: "}"
|
24
|
+
selector: meta.preprocessor
|
25
|
+
- begin: "{\\textbf{"
|
26
|
+
end: "}}"
|
27
|
+
selector: keyword.control.import
|
28
|
+
- begin: "{\\color[HTML]{A1A1FF}"
|
29
|
+
end: "}"
|
30
|
+
selector: support.function
|
31
|
+
- begin: "{\\color[HTML]{0000FF}"
|
32
|
+
end: "}"
|
33
|
+
selector: declaration.function function-result
|
34
|
+
- begin: "{\\textbf{"
|
35
|
+
end: "}}"
|
36
|
+
selector: declaration.function function-name
|
37
|
+
- begin: "{\\textbf{"
|
38
|
+
end: "}}"
|
39
|
+
selector: declaration.function argument-name
|
40
|
+
- begin: "{\\color[HTML]{0000FF}"
|
41
|
+
end: "}"
|
42
|
+
selector: declaration.function function-arg-type
|
43
|
+
- begin: "{\\textit{"
|
44
|
+
end: "}}"
|
45
|
+
selector: declaration.function function-argument
|
46
|
+
- begin: "{\\underline{"
|
47
|
+
end: "}}"
|
48
|
+
selector: declaration.class class-name
|
49
|
+
- begin: "{\\textit{"
|
50
|
+
end: "}}"
|
51
|
+
selector: declaration.class class-inheritance
|
52
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{FF0000}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FFF9F9}\textbf{
|
53
|
+
end: "}}"
|
54
|
+
selector: invalid
|
55
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{FFD0D0}{\rule[-0.5ex]{0pt}{2.0ex}
|
56
|
+
end: "}"
|
57
|
+
selector: invalid.deprecated.trailing-whitespace
|
58
|
+
- begin: "{\\textit{"
|
59
|
+
end: "}}"
|
60
|
+
selector: declaration.section section-name
|
61
|
+
- begin: "{\\color[HTML]{C10006}"
|
62
|
+
end: "}"
|
63
|
+
selector: string.interpolation
|
64
|
+
- begin: "{\\color[HTML]{666666}"
|
65
|
+
end: "}"
|
66
|
+
selector: string.regexp
|
67
|
+
- begin: "{\\color[HTML]{C1C144}"
|
68
|
+
end: "}"
|
69
|
+
selector: variable
|
70
|
+
- begin: "{\\color[HTML]{6782D3}"
|
71
|
+
end: "}"
|
72
|
+
selector: constant
|
73
|
+
- begin: "{\\color[HTML]{AFA472}"
|
74
|
+
end: "}"
|
75
|
+
selector: constant.character
|
76
|
+
- begin: "{\\color[HTML]{DE8E30}\\textbf{"
|
77
|
+
end: "}}"
|
78
|
+
selector: constant.language
|
79
|
+
- begin: "{\\underline{"
|
80
|
+
end: "}}"
|
81
|
+
selector: embedded
|
82
|
+
- begin: "{\\color[HTML]{858EF4}"
|
83
|
+
end: "}"
|
84
|
+
selector: keyword.markup.element-name
|
85
|
+
- begin: "{\\color[HTML]{9B456F}"
|
86
|
+
end: "}"
|
87
|
+
selector: keyword.markup.attribute-name
|
88
|
+
- begin: "{\\color[HTML]{9B456F}"
|
89
|
+
end: "}"
|
90
|
+
selector: meta.attribute-with-value
|
91
|
+
- begin: "{\\color[HTML]{C82255}\\textbf{"
|
92
|
+
end: "}}"
|
93
|
+
selector: keyword.exception
|
94
|
+
- begin: "{\\color[HTML]{47B8D6}"
|
95
|
+
end: "}"
|
96
|
+
selector: keyword.operator
|
97
|
+
- begin: "{\\color[HTML]{6969FA}\\textbf{"
|
98
|
+
end: "}}"
|
99
|
+
selector: keyword.control
|
100
|
+
- begin: "{\\color[HTML]{68685B}"
|
101
|
+
end: "}"
|
102
|
+
selector: meta.tag.preprocessor.xml
|
103
|
+
- begin: "{\\color[HTML]{888888}"
|
104
|
+
end: "}"
|
105
|
+
selector: meta.tag.sgml.doctype
|
106
|
+
- begin: "{\\textit{"
|
107
|
+
end: "}}"
|
108
|
+
selector: string.quoted.docinfo.doctype.DTD
|
109
|
+
- begin: "{\\color[HTML]{909090}"
|
110
|
+
end: "}"
|
111
|
+
selector: comment.other.server-side-include.xhtml, comment.other.server-side-include.html
|
112
|
+
- begin: "{\\color[HTML]{858EF4}"
|
113
|
+
end: "}"
|
114
|
+
selector: text.html declaration.tag, text.html meta.tag, text.html entity.name.tag.xhtml
|
115
|
+
- begin: "{\\color[HTML]{9B456F}"
|
116
|
+
end: "}"
|
117
|
+
selector: keyword.markup.attribute-name
|
118
|
+
- begin: "{\\color[HTML]{777777}"
|
119
|
+
end: "}"
|
120
|
+
selector: keyword.other.phpdoc.php
|
121
|
+
- begin: "{\\color[HTML]{C82255}"
|
122
|
+
end: "}"
|
123
|
+
selector: keyword.other.include.php
|
124
|
+
- begin: "{\\color[HTML]{DE8E20}\\textbf{"
|
125
|
+
end: "}}"
|
126
|
+
selector: support.constant.core.php
|
127
|
+
- begin: "{\\color[HTML]{DE8E10}\\textbf{"
|
128
|
+
end: "}}"
|
129
|
+
selector: support.constant.std.php
|
130
|
+
- begin: "{\\color[HTML]{B72E1D}"
|
131
|
+
end: "}"
|
132
|
+
selector: variable.other.global.php
|
133
|
+
- begin: "{\\color[HTML]{00FF00}"
|
134
|
+
end: "}"
|
135
|
+
selector: variable.other.global.safer.php
|
136
|
+
- begin: "{\\color[HTML]{BFA36D}"
|
137
|
+
end: "}"
|
138
|
+
selector: string.quoted.single.php
|
139
|
+
- begin: "{\\color[HTML]{6969FA}"
|
140
|
+
end: "}"
|
141
|
+
selector: keyword.storage.php
|
142
|
+
- begin: "{\\color[HTML]{AD9361}"
|
143
|
+
end: "}"
|
144
|
+
selector: string.quoted.double.php
|
145
|
+
- begin: "{\\color[HTML]{EC9E00}"
|
146
|
+
end: "}"
|
147
|
+
selector: entity.other.attribute-name.id.css
|
148
|
+
- begin: "{\\color[HTML]{B8CD06}\\textbf{"
|
149
|
+
end: "}}"
|
150
|
+
selector: entity.name.tag.css
|
151
|
+
- begin: "{\\color[HTML]{EDCA06}"
|
152
|
+
end: "}"
|
153
|
+
selector: entity.other.attribute-name.class.css
|
154
|
+
- begin: "{\\color[HTML]{2E759C}"
|
155
|
+
end: "}"
|
156
|
+
selector: entity.other.attribute-name.pseudo-class.css
|
157
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{FF0000}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FFFFFF}
|
158
|
+
end: "}"
|
159
|
+
selector: invalid.bad-comma.css
|
160
|
+
- begin: "{\\color[HTML]{9B2E4D}"
|
161
|
+
end: "}"
|
162
|
+
selector: support.constant.property-value.css
|
163
|
+
- begin: "{\\color[HTML]{E1C96B}"
|
164
|
+
end: "}"
|
165
|
+
selector: support.type.property-name.css
|
166
|
+
- begin: "{\\color[HTML]{666633}"
|
167
|
+
end: "}"
|
168
|
+
selector: constant.other.rgb-value.css
|
169
|
+
- begin: "{\\color[HTML]{666633}"
|
170
|
+
end: "}"
|
171
|
+
selector: support.constant.font-name.css
|
172
|
+
- begin: "{\\color[HTML]{7171F3}"
|
173
|
+
end: "}"
|
174
|
+
selector: support.constant.tm-language-def, support.constant.name.tm-language-def
|
175
|
+
- begin: "{\\color[HTML]{6969FA}"
|
176
|
+
end: "}"
|
177
|
+
selector: keyword.other.unit.css
|
178
|
+
listing:
|
179
|
+
begin: |
|
180
|
+
\newcolumntype{C}{>{\color[HTML]{DADADA}\columncolor[HTML]{211E1E}}l}
|
181
|
+
\newcolumntype{N}{>{\color[HTML]{FFFFFF}\columncolor[HTML]{73597E}}l}
|
182
|
+
\begin{longtable}{NC}
|
183
|
+
|
184
|
+
end: |
|
185
|
+
\end{longtable}
|
186
|
+
|
187
|
+
document:
|
188
|
+
begin: |
|
189
|
+
\documentclass[a4paper,landscape]{article}
|
190
|
+
\usepackage{xcolor}
|
191
|
+
\usepackage{colortbl}
|
192
|
+
\usepackage{longtable}
|
193
|
+
\usepackage[left=2cm,top=1cm,right=3cm,nohead,nofoot]{geometry}
|
194
|
+
\usepackage[T1]{fontenc}
|
195
|
+
\usepackage[scaled]{beramono}
|
196
|
+
\begin{document}
|
197
|
+
|
198
|
+
end: |
|
199
|
+
\end{document}
|
200
|
+
|
201
|
+
filter: "@escaped.gsub(/(\\$)/, '\\\\\\\\\\1').gsub(/\\\\(?!\\$)/, '$\\\\\\\\backslash$').gsub(/(_|\\{|\\}|&|\\#|%)/, '\\\\\\\\\\1').gsub(/~/, '\\\\textasciitilde ').gsub(/ /,'\\\\hspace{1ex}').gsub(/\\t| /,'\\\\hspace{3ex}').gsub(/\\\"/, \"''\").gsub(/(\\^)/,'\\\\\\\\\\1{}')"
|
202
|
+
line-numbers:
|
203
|
+
begin: \texttt{
|
204
|
+
end: "}&\\mbox{\\texttt{"
|
@@ -0,0 +1,123 @@
|
|
1
|
+
---
|
2
|
+
name: Slush & Poppies
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: "{\\color[HTML]{406040}"
|
8
|
+
end: "}"
|
9
|
+
selector: comment
|
10
|
+
- begin: "{\\color[HTML]{C03030}"
|
11
|
+
end: "}"
|
12
|
+
selector: string
|
13
|
+
- begin: "{\\color[HTML]{0080A0}"
|
14
|
+
end: "}"
|
15
|
+
selector: constant.numeric
|
16
|
+
- begin: "{\\underline{"
|
17
|
+
end: "}}"
|
18
|
+
selector: source.ocaml constant.numeric.floating-point
|
19
|
+
- begin: "{\\color[HTML]{800000}"
|
20
|
+
end: "}"
|
21
|
+
selector: constant.character
|
22
|
+
- begin: "{"
|
23
|
+
end: "}"
|
24
|
+
selector: constant.language
|
25
|
+
- begin: "{"
|
26
|
+
end: "}"
|
27
|
+
selector: constant.character, constant.other
|
28
|
+
- begin: "{"
|
29
|
+
end: "}"
|
30
|
+
selector: variable.parameter, variable.other
|
31
|
+
- begin: "{\\color[HTML]{2060A0}"
|
32
|
+
end: "}"
|
33
|
+
selector: keyword
|
34
|
+
- begin: "{\\color[HTML]{2060A0}"
|
35
|
+
end: "}"
|
36
|
+
selector: keyword.operator
|
37
|
+
- begin: "{\\underline{"
|
38
|
+
end: "}}"
|
39
|
+
selector: source.ocaml keyword.operator.symbol.prefix.floating-point
|
40
|
+
- begin: "{\\underline{"
|
41
|
+
end: "}}"
|
42
|
+
selector: source.ocaml keyword.operator.symbol.infix.floating-point
|
43
|
+
- begin: "{\\color[HTML]{0080FF}"
|
44
|
+
end: "}"
|
45
|
+
selector: entity.name.module, support.other.module
|
46
|
+
- begin: "{\\color[HTML]{A08000}"
|
47
|
+
end: "}"
|
48
|
+
selector: storage.type
|
49
|
+
- begin: "{\\color[HTML]{008080}"
|
50
|
+
end: "}"
|
51
|
+
selector: storage
|
52
|
+
- begin: "{\\color[HTML]{C08060}"
|
53
|
+
end: "}"
|
54
|
+
selector: entity.name.class.variant
|
55
|
+
- begin: "{\\textbf{"
|
56
|
+
end: "}}"
|
57
|
+
selector: keyword.other.directive
|
58
|
+
- begin: "{"
|
59
|
+
end: "}"
|
60
|
+
selector: source.ocaml keyword.other.directive.line-number
|
61
|
+
- begin: "{"
|
62
|
+
end: "}"
|
63
|
+
selector: entity.other.inherited-class
|
64
|
+
- begin: "{\\color[HTML]{800000}"
|
65
|
+
end: "}"
|
66
|
+
selector: entity.name.function
|
67
|
+
- begin: "{\\color[HTML]{800080}"
|
68
|
+
end: "}"
|
69
|
+
selector: storage.type.user-defined
|
70
|
+
- begin: "{\\color[HTML]{8000C0}"
|
71
|
+
end: "}"
|
72
|
+
selector: entity.name.type.class.type
|
73
|
+
- begin: "{"
|
74
|
+
end: "}"
|
75
|
+
selector: variable.parameter
|
76
|
+
- begin: "{"
|
77
|
+
end: "}"
|
78
|
+
selector: entity.name.tag
|
79
|
+
- begin: "{"
|
80
|
+
end: "}"
|
81
|
+
selector: entity.other.attribute-name
|
82
|
+
- begin: "{"
|
83
|
+
end: "}"
|
84
|
+
selector: support.function
|
85
|
+
- begin: "{"
|
86
|
+
end: "}"
|
87
|
+
selector: support.constant
|
88
|
+
- begin: "{"
|
89
|
+
end: "}"
|
90
|
+
selector: support.type, support.class
|
91
|
+
- begin: "{"
|
92
|
+
end: "}"
|
93
|
+
selector: support.variable
|
94
|
+
- begin: "{"
|
95
|
+
end: "}"
|
96
|
+
selector: invalid
|
97
|
+
listing:
|
98
|
+
begin: |
|
99
|
+
\newcolumntype{C}{>{\color[HTML]{000000}\columncolor[HTML]{F1F1F1}}l}
|
100
|
+
\newcolumntype{N}{>{\color[HTML]{000000}\columncolor[HTML]{B0B0FF}}l}
|
101
|
+
\begin{longtable}{NC}
|
102
|
+
|
103
|
+
end: |
|
104
|
+
\end{longtable}
|
105
|
+
|
106
|
+
document:
|
107
|
+
begin: |
|
108
|
+
\documentclass[a4paper,landscape]{article}
|
109
|
+
\usepackage{xcolor}
|
110
|
+
\usepackage{colortbl}
|
111
|
+
\usepackage{longtable}
|
112
|
+
\usepackage[left=2cm,top=1cm,right=3cm,nohead,nofoot]{geometry}
|
113
|
+
\usepackage[T1]{fontenc}
|
114
|
+
\usepackage[scaled]{beramono}
|
115
|
+
\begin{document}
|
116
|
+
|
117
|
+
end: |
|
118
|
+
\end{document}
|
119
|
+
|
120
|
+
filter: "@escaped.gsub(/(\\$)/, '\\\\\\\\\\1').gsub(/\\\\(?!\\$)/, '$\\\\\\\\backslash$').gsub(/(_|\\{|\\}|&|\\#|%)/, '\\\\\\\\\\1').gsub(/~/, '\\\\textasciitilde ').gsub(/ /,'\\\\hspace{1ex}').gsub(/\\t| /,'\\\\hspace{3ex}').gsub(/\\\"/, \"''\").gsub(/(\\^)/,'\\\\\\\\\\1{}')"
|
121
|
+
line-numbers:
|
122
|
+
begin: \texttt{
|
123
|
+
end: "}&\\mbox{\\texttt{"
|
@@ -0,0 +1,81 @@
|
|
1
|
+
---
|
2
|
+
name: SpaceCadet
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: "{\\color[HTML]{473C45}"
|
8
|
+
end: "}"
|
9
|
+
selector: comment
|
10
|
+
- begin: "{\\color[HTML]{805978}"
|
11
|
+
end: "}"
|
12
|
+
selector: string
|
13
|
+
- begin: "{\\color[HTML]{BF9960}"
|
14
|
+
end: "}"
|
15
|
+
selector: constant
|
16
|
+
- begin: "{\\color[HTML]{596380}"
|
17
|
+
end: "}"
|
18
|
+
selector: variable.parameter, variable.other
|
19
|
+
- begin: "{\\color[HTML]{728059}"
|
20
|
+
end: "}"
|
21
|
+
selector: keyword - keyword.operator, keyword.operator.logical
|
22
|
+
- begin: "{\\color[HTML]{9EBF60}"
|
23
|
+
end: "}"
|
24
|
+
selector: storage
|
25
|
+
- begin: "{\\color[HTML]{6078BF}"
|
26
|
+
end: "}"
|
27
|
+
selector: entity
|
28
|
+
- begin: "{\\textit{"
|
29
|
+
end: "}}"
|
30
|
+
selector: entity.other.inherited-class
|
31
|
+
- begin: "{\\color[HTML]{8A4B66}"
|
32
|
+
end: "}"
|
33
|
+
selector: support
|
34
|
+
- begin: "{\\color[HTML]{893062}"
|
35
|
+
end: "}"
|
36
|
+
selector: support.type.exception
|
37
|
+
- begin: "{"
|
38
|
+
end: "}"
|
39
|
+
selector: entity.name.tag
|
40
|
+
- begin: "{"
|
41
|
+
end: "}"
|
42
|
+
selector: entity.other.attribute-name
|
43
|
+
- begin: "{"
|
44
|
+
end: "}"
|
45
|
+
selector: support.constant
|
46
|
+
- begin: "{"
|
47
|
+
end: "}"
|
48
|
+
selector: support.type, support.class
|
49
|
+
- begin: "{"
|
50
|
+
end: "}"
|
51
|
+
selector: support.other.variable
|
52
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{5F0047}{\rule[-0.5ex]{0pt}{2.0ex}
|
53
|
+
end: "}"
|
54
|
+
selector: invalid
|
55
|
+
listing:
|
56
|
+
begin: |
|
57
|
+
\newcolumntype{C}{>{\color[HTML]{DDE6CF}\columncolor[HTML]{0D0D0D}}l}
|
58
|
+
\newcolumntype{N}{>{\color[HTML]{FFFFFF}\columncolor[HTML]{40002F}}l}
|
59
|
+
\begin{longtable}{NC}
|
60
|
+
|
61
|
+
end: |
|
62
|
+
\end{longtable}
|
63
|
+
|
64
|
+
document:
|
65
|
+
begin: |
|
66
|
+
\documentclass[a4paper,landscape]{article}
|
67
|
+
\usepackage{xcolor}
|
68
|
+
\usepackage{colortbl}
|
69
|
+
\usepackage{longtable}
|
70
|
+
\usepackage[left=2cm,top=1cm,right=3cm,nohead,nofoot]{geometry}
|
71
|
+
\usepackage[T1]{fontenc}
|
72
|
+
\usepackage[scaled]{beramono}
|
73
|
+
\begin{document}
|
74
|
+
|
75
|
+
end: |
|
76
|
+
\end{document}
|
77
|
+
|
78
|
+
filter: "@escaped.gsub(/(\\$)/, '\\\\\\\\\\1').gsub(/\\\\(?!\\$)/, '$\\\\\\\\backslash$').gsub(/(_|\\{|\\}|&|\\#|%)/, '\\\\\\\\\\1').gsub(/~/, '\\\\textasciitilde ').gsub(/ /,'\\\\hspace{1ex}').gsub(/\\t| /,'\\\\hspace{3ex}').gsub(/\\\"/, \"''\").gsub(/(\\^)/,'\\\\\\\\\\1{}')"
|
79
|
+
line-numbers:
|
80
|
+
begin: \texttt{
|
81
|
+
end: "}&\\mbox{\\texttt{"
|
@@ -0,0 +1,186 @@
|
|
1
|
+
---
|
2
|
+
name: Sunburst
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: "{\\color[HTML]{AEAEAE}\\textit{"
|
8
|
+
end: "}}"
|
9
|
+
selector: comment
|
10
|
+
- begin: "{\\color[HTML]{3387CC}"
|
11
|
+
end: "}"
|
12
|
+
selector: constant
|
13
|
+
- begin: "{\\color[HTML]{89BDFF}"
|
14
|
+
end: "}"
|
15
|
+
selector: entity
|
16
|
+
- begin: "{\\color[HTML]{E28964}"
|
17
|
+
end: "}"
|
18
|
+
selector: keyword
|
19
|
+
- begin: "{\\color[HTML]{99CF50}"
|
20
|
+
end: "}"
|
21
|
+
selector: storage
|
22
|
+
- begin: "{\\color[HTML]{65B042}"
|
23
|
+
end: "}"
|
24
|
+
selector: string
|
25
|
+
- begin: "{\\color[HTML]{9B859D}"
|
26
|
+
end: "}"
|
27
|
+
selector: support
|
28
|
+
- begin: "{\\color[HTML]{3E87E3}"
|
29
|
+
end: "}"
|
30
|
+
selector: variable
|
31
|
+
- begin: "{\\color[HTML]{FD5FF1}\\textit{"
|
32
|
+
end: "}}"
|
33
|
+
selector: invalid.deprecated
|
34
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{150B15}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FD5FF1}
|
35
|
+
end: "}"
|
36
|
+
selector: invalid.illegal
|
37
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{ABADB4}{\rule[-0.5ex]{0pt}{2.0ex}
|
38
|
+
end: "}"
|
39
|
+
selector: text source
|
40
|
+
- begin: "{\\color[HTML]{9B5C2E}\\textit{"
|
41
|
+
end: "}}"
|
42
|
+
selector: entity.other.inherited-class
|
43
|
+
- begin: "{\\color[HTML]{DAEFA3}"
|
44
|
+
end: "}"
|
45
|
+
selector: string.quoted source
|
46
|
+
- begin: "{\\color[HTML]{DDF2A4}"
|
47
|
+
end: "}"
|
48
|
+
selector: string constant
|
49
|
+
- begin: "{\\color[HTML]{E9C062}"
|
50
|
+
end: "}"
|
51
|
+
selector: string.regexp
|
52
|
+
- begin: "{\\color[HTML]{CF7D34}"
|
53
|
+
end: "}"
|
54
|
+
selector: string.regexp constant.character.escape, string.regexp source.ruby.embedded, string.regexp string.regexp.arbitrary-repitition
|
55
|
+
- begin: "{\\color[HTML]{8A9A95}"
|
56
|
+
end: "}"
|
57
|
+
selector: string variable
|
58
|
+
- begin: "{\\color[HTML]{DAD085}"
|
59
|
+
end: "}"
|
60
|
+
selector: support.function
|
61
|
+
- begin: "{\\color[HTML]{CF6A4C}"
|
62
|
+
end: "}"
|
63
|
+
selector: support.constant
|
64
|
+
- begin: "{\\color[HTML]{8996A8}"
|
65
|
+
end: "}"
|
66
|
+
selector: meta.preprocessor.c
|
67
|
+
- begin: "{\\color[HTML]{AFC4DB}"
|
68
|
+
end: "}"
|
69
|
+
selector: meta.preprocessor.c keyword
|
70
|
+
- begin: "{\\underline{"
|
71
|
+
end: "}}"
|
72
|
+
selector: entity.name.type
|
73
|
+
- begin: "{\\color[HTML]{676767}\\textit{"
|
74
|
+
end: "}}"
|
75
|
+
selector: meta.cast
|
76
|
+
- begin: "{\\color[HTML]{494949}"
|
77
|
+
end: "}"
|
78
|
+
selector: meta.sgml.html meta.doctype, meta.sgml.html meta.doctype entity, meta.sgml.html meta.doctype string, meta.xml-processing, meta.xml-processing entity, meta.xml-processing string
|
79
|
+
- begin: "{\\color[HTML]{89BDFF}"
|
80
|
+
end: "}"
|
81
|
+
selector: meta.tag, meta.tag entity
|
82
|
+
- begin: "{\\color[HTML]{E0C589}"
|
83
|
+
end: "}"
|
84
|
+
selector: source entity.name.tag, source entity.other.attribute-name, meta.tag.inline, meta.tag.inline entity
|
85
|
+
- begin: "{\\color[HTML]{E18964}"
|
86
|
+
end: "}"
|
87
|
+
selector: entity.name.tag.namespace, entity.other.attribute-name.namespace
|
88
|
+
- begin: "{\\color[HTML]{CDA869}"
|
89
|
+
end: "}"
|
90
|
+
selector: meta.selector.css entity.name.tag
|
91
|
+
- begin: "{\\color[HTML]{8F9D6A}"
|
92
|
+
end: "}"
|
93
|
+
selector: meta.selector.css entity.other.attribute-name.tag.pseudo-class
|
94
|
+
- begin: "{\\color[HTML]{8B98AB}"
|
95
|
+
end: "}"
|
96
|
+
selector: meta.selector.css entity.other.attribute-name.id
|
97
|
+
- begin: "{\\color[HTML]{9B703F}"
|
98
|
+
end: "}"
|
99
|
+
selector: meta.selector.css entity.other.attribute-name.class
|
100
|
+
- begin: "{\\color[HTML]{C5AF75}"
|
101
|
+
end: "}"
|
102
|
+
selector: support.type.property-name.css
|
103
|
+
- begin: "{\\color[HTML]{F9EE98}"
|
104
|
+
end: "}"
|
105
|
+
selector: meta.property-group support.constant.property-value.css, meta.property-value support.constant.property-value.css
|
106
|
+
- begin: "{\\color[HTML]{8693A5}"
|
107
|
+
end: "}"
|
108
|
+
selector: meta.preprocessor.at-rule keyword.control.at-rule
|
109
|
+
- begin: "{\\color[HTML]{DD7B3B}"
|
110
|
+
end: "}"
|
111
|
+
selector: meta.property-value support.constant.named-color.css, meta.property-value constant
|
112
|
+
- begin: "{\\color[HTML]{8F9D6A}"
|
113
|
+
end: "}"
|
114
|
+
selector: meta.constructor.argument.css
|
115
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{0E2231}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}\textit{
|
116
|
+
end: "}}"
|
117
|
+
selector: meta.diff, meta.diff.header
|
118
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{420E09}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
119
|
+
end: "}"
|
120
|
+
selector: markup.deleted
|
121
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{4A410D}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
122
|
+
end: "}"
|
123
|
+
selector: markup.changed
|
124
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{253B22}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
125
|
+
end: "}"
|
126
|
+
selector: markup.inserted
|
127
|
+
- begin: "{\\color[HTML]{E9C062}\\textit{"
|
128
|
+
end: "}}"
|
129
|
+
selector: markup.italic
|
130
|
+
- begin: "{\\color[HTML]{E9C062}\\textbf{"
|
131
|
+
end: "}}"
|
132
|
+
selector: markup.bold
|
133
|
+
- begin: "{\\color[HTML]{E18964}\\underline{"
|
134
|
+
end: "}}"
|
135
|
+
selector: markup.underline
|
136
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{ECD091}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{E1D4B9}\textit{
|
137
|
+
end: "}}"
|
138
|
+
selector: markup.quote
|
139
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{632D04}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FEDCC5}
|
140
|
+
end: "}"
|
141
|
+
selector: markup.heading, markup.heading entity
|
142
|
+
- begin: "{\\color[HTML]{E1D4B9}"
|
143
|
+
end: "}"
|
144
|
+
selector: markup.list
|
145
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{ABADB4}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{578BB3}
|
146
|
+
end: "}"
|
147
|
+
selector: markup.raw
|
148
|
+
- begin: "{\\color[HTML]{F67B37}\\textit{"
|
149
|
+
end: "}}"
|
150
|
+
selector: markup comment
|
151
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{242424}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{60A633}
|
152
|
+
end: "}"
|
153
|
+
selector: meta.separator
|
154
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{C7C7C7}{\rule[-0.5ex]{0pt}{2.0ex}
|
155
|
+
end: "}"
|
156
|
+
selector: meta.line.entry.logfile, meta.line.exit.logfile
|
157
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{751012}{\rule[-0.5ex]{0pt}{2.0ex}
|
158
|
+
end: "}"
|
159
|
+
selector: meta.line.error.logfile
|
160
|
+
listing:
|
161
|
+
begin: |
|
162
|
+
\newcolumntype{C}{>{\color[HTML]{F8F8F8}\columncolor[HTML]{000000}}l}
|
163
|
+
\newcolumntype{N}{>{\color[HTML]{000000}\columncolor[HTML]{DDF0FF}}l}
|
164
|
+
\begin{longtable}{NC}
|
165
|
+
|
166
|
+
end: |
|
167
|
+
\end{longtable}
|
168
|
+
|
169
|
+
document:
|
170
|
+
begin: |
|
171
|
+
\documentclass[a4paper,landscape]{article}
|
172
|
+
\usepackage{xcolor}
|
173
|
+
\usepackage{colortbl}
|
174
|
+
\usepackage{longtable}
|
175
|
+
\usepackage[left=2cm,top=1cm,right=3cm,nohead,nofoot]{geometry}
|
176
|
+
\usepackage[T1]{fontenc}
|
177
|
+
\usepackage[scaled]{beramono}
|
178
|
+
\begin{document}
|
179
|
+
|
180
|
+
end: |
|
181
|
+
\end{document}
|
182
|
+
|
183
|
+
filter: "@escaped.gsub(/(\\$)/, '\\\\\\\\\\1').gsub(/\\\\(?!\\$)/, '$\\\\\\\\backslash$').gsub(/(_|\\{|\\}|&|\\#|%)/, '\\\\\\\\\\1').gsub(/~/, '\\\\textasciitilde ').gsub(/ /,'\\\\hspace{1ex}').gsub(/\\t| /,'\\\\hspace{3ex}').gsub(/\\\"/, \"''\").gsub(/(\\^)/,'\\\\\\\\\\1{}')"
|
184
|
+
line-numbers:
|
185
|
+
begin: \texttt{
|
186
|
+
end: "}&\\mbox{\\texttt{"
|