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,162 @@
|
|
1
|
+
---
|
2
|
+
name: Cobalt
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: "{\\color[HTML]{E1EFFF}"
|
8
|
+
end: "}"
|
9
|
+
selector: punctuation - (punctuation.definition.string || punctuation.definition.comment)
|
10
|
+
- begin: "{\\color[HTML]{FF628C}"
|
11
|
+
end: "}"
|
12
|
+
selector: constant
|
13
|
+
- begin: "{\\color[HTML]{FFDD00}"
|
14
|
+
end: "}"
|
15
|
+
selector: entity
|
16
|
+
- begin: "{\\color[HTML]{FF9D00}"
|
17
|
+
end: "}"
|
18
|
+
selector: keyword
|
19
|
+
- begin: "{\\color[HTML]{FFEE80}"
|
20
|
+
end: "}"
|
21
|
+
selector: storage
|
22
|
+
- begin: "{\\color[HTML]{3AD900}"
|
23
|
+
end: "}"
|
24
|
+
selector: string -string.unquoted.old-plist -string.unquoted.heredoc, string.unquoted.heredoc string
|
25
|
+
- begin: "{\\color[HTML]{0088FF}\\textit{"
|
26
|
+
end: "}}"
|
27
|
+
selector: comment
|
28
|
+
- begin: "{\\color[HTML]{80FFBB}"
|
29
|
+
end: "}"
|
30
|
+
selector: support
|
31
|
+
- begin: "{\\color[HTML]{CCCCCC}"
|
32
|
+
end: "}"
|
33
|
+
selector: variable
|
34
|
+
- begin: "{\\color[HTML]{FF80E1}"
|
35
|
+
end: "}"
|
36
|
+
selector: variable.language
|
37
|
+
- begin: "{\\color[HTML]{FFEE80}"
|
38
|
+
end: "}"
|
39
|
+
selector: meta.function-call
|
40
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{800F00}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
41
|
+
end: "}"
|
42
|
+
selector: invalid
|
43
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{223545}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FFFFFF}
|
44
|
+
end: "}"
|
45
|
+
selector: text source, string.unquoted.heredoc, source source
|
46
|
+
- begin: "{\\color[HTML]{80FCFF}\\textit{"
|
47
|
+
end: "}}"
|
48
|
+
selector: entity.other.inherited-class
|
49
|
+
- begin: "{\\color[HTML]{9EFF80}"
|
50
|
+
end: "}"
|
51
|
+
selector: string.quoted source
|
52
|
+
- begin: "{\\color[HTML]{80FF82}"
|
53
|
+
end: "}"
|
54
|
+
selector: string constant
|
55
|
+
- begin: "{\\color[HTML]{80FFC2}"
|
56
|
+
end: "}"
|
57
|
+
selector: string.regexp
|
58
|
+
- begin: "{\\color[HTML]{EDEF7D}"
|
59
|
+
end: "}"
|
60
|
+
selector: string variable
|
61
|
+
- begin: "{\\color[HTML]{FFB054}"
|
62
|
+
end: "}"
|
63
|
+
selector: support.function
|
64
|
+
- begin: "{\\color[HTML]{EB939A}"
|
65
|
+
end: "}"
|
66
|
+
selector: support.constant
|
67
|
+
- begin: "{\\color[HTML]{FF1E00}"
|
68
|
+
end: "}"
|
69
|
+
selector: support.class.exception
|
70
|
+
- begin: "{\\color[HTML]{8996A8}"
|
71
|
+
end: "}"
|
72
|
+
selector: meta.preprocessor.c
|
73
|
+
- begin: "{\\color[HTML]{AFC4DB}"
|
74
|
+
end: "}"
|
75
|
+
selector: meta.preprocessor.c keyword
|
76
|
+
- begin: "{\\color[HTML]{73817D}"
|
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]{9EFFFF}"
|
80
|
+
end: "}"
|
81
|
+
selector: meta.tag, meta.tag entity
|
82
|
+
- begin: "{\\color[HTML]{9EFFFF}"
|
83
|
+
end: "}"
|
84
|
+
selector: meta.selector.css entity.name.tag
|
85
|
+
- begin: "{\\color[HTML]{FFB454}"
|
86
|
+
end: "}"
|
87
|
+
selector: meta.selector.css entity.other.attribute-name.id
|
88
|
+
- begin: "{\\color[HTML]{5FE461}"
|
89
|
+
end: "}"
|
90
|
+
selector: meta.selector.css entity.other.attribute-name.class
|
91
|
+
- begin: "{\\color[HTML]{9DF39F}"
|
92
|
+
end: "}"
|
93
|
+
selector: support.type.property-name.css
|
94
|
+
- begin: "{\\color[HTML]{F6F080}"
|
95
|
+
end: "}"
|
96
|
+
selector: meta.property-group support.constant.property-value.css, meta.property-value support.constant.property-value.css
|
97
|
+
- begin: "{\\color[HTML]{F6AA11}"
|
98
|
+
end: "}"
|
99
|
+
selector: meta.preprocessor.at-rule keyword.control.at-rule
|
100
|
+
- begin: "{\\color[HTML]{EDF080}"
|
101
|
+
end: "}"
|
102
|
+
selector: meta.property-value support.constant.named-color.css, meta.property-value constant
|
103
|
+
- begin: "{\\color[HTML]{EB939A}"
|
104
|
+
end: "}"
|
105
|
+
selector: meta.constructor.argument.css
|
106
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{000E1A}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
107
|
+
end: "}"
|
108
|
+
selector: meta.diff, meta.diff.header
|
109
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{4C0900}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
110
|
+
end: "}"
|
111
|
+
selector: markup.deleted
|
112
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{806F00}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
113
|
+
end: "}"
|
114
|
+
selector: markup.changed
|
115
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{154F00}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
116
|
+
end: "}"
|
117
|
+
selector: markup.inserted
|
118
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{74B9D3}{\rule[-0.5ex]{0pt}{2.0ex}
|
119
|
+
end: "}"
|
120
|
+
selector: markup.raw
|
121
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{004480}{\rule[-0.5ex]{0pt}{2.0ex}
|
122
|
+
end: "}"
|
123
|
+
selector: markup.quote
|
124
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{130D26}{\rule[-0.5ex]{0pt}{2.0ex}
|
125
|
+
end: "}"
|
126
|
+
selector: markup.list
|
127
|
+
- begin: "{\\color[HTML]{C1AFFF}\\textbf{"
|
128
|
+
end: "}}"
|
129
|
+
selector: markup.bold
|
130
|
+
- begin: "{\\color[HTML]{B8FFD9}\\textit{"
|
131
|
+
end: "}}"
|
132
|
+
selector: markup.italic
|
133
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{001221}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{C8E4FD}\textbf{
|
134
|
+
end: "}}"
|
135
|
+
selector: markup.heading
|
136
|
+
listing:
|
137
|
+
begin: |
|
138
|
+
\newcolumntype{C}{>{\color[HTML]{FFFFFF}\columncolor[HTML]{002240}}l}
|
139
|
+
\newcolumntype{N}{>{\color[HTML]{000000}\columncolor[HTML]{B36539}}l}
|
140
|
+
\begin{longtable}{NC}
|
141
|
+
|
142
|
+
end: |
|
143
|
+
\end{longtable}
|
144
|
+
|
145
|
+
document:
|
146
|
+
begin: |
|
147
|
+
\documentclass[a4paper,landscape]{article}
|
148
|
+
\usepackage{xcolor}
|
149
|
+
\usepackage{colortbl}
|
150
|
+
\usepackage{longtable}
|
151
|
+
\usepackage[left=2cm,top=1cm,right=3cm,nohead,nofoot]{geometry}
|
152
|
+
\usepackage[T1]{fontenc}
|
153
|
+
\usepackage[scaled]{beramono}
|
154
|
+
\begin{document}
|
155
|
+
|
156
|
+
end: |
|
157
|
+
\end{document}
|
158
|
+
|
159
|
+
filter: "@escaped.gsub(/(\\$)/, '\\\\\\\\\\1').gsub(/\\\\(?!\\$)/, '$\\\\\\\\backslash$').gsub(/(_|\\{|\\}|&|\\#|%)/, '\\\\\\\\\\1').gsub(/~/, '\\\\textasciitilde ').gsub(/ /,'\\\\hspace{1ex}').gsub(/\\t| /,'\\\\hspace{3ex}').gsub(/\\\"/, \"''\").gsub(/(\\^)/,'\\\\\\\\\\1{}')"
|
160
|
+
line-numbers:
|
161
|
+
begin: \texttt{
|
162
|
+
end: "}&\\mbox{\\texttt{"
|
@@ -0,0 +1,126 @@
|
|
1
|
+
---
|
2
|
+
name: Dawn
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: "{\\color[HTML]{5A525F}\\textit{"
|
8
|
+
end: "}}"
|
9
|
+
selector: comment
|
10
|
+
- begin: "{\\color[HTML]{811F24}\\textbf{"
|
11
|
+
end: "}}"
|
12
|
+
selector: constant
|
13
|
+
- begin: "{\\color[HTML]{BF4F24}"
|
14
|
+
end: "}"
|
15
|
+
selector: entity
|
16
|
+
- begin: "{\\color[HTML]{794938}"
|
17
|
+
end: "}"
|
18
|
+
selector: keyword
|
19
|
+
- begin: "{\\color[HTML]{A71D5D}\\textit{"
|
20
|
+
end: "}}"
|
21
|
+
selector: storage
|
22
|
+
- begin: "{\\color[HTML]{0B6125}"
|
23
|
+
end: "}"
|
24
|
+
selector: string | punctuation.definition.string
|
25
|
+
- begin: "{\\color[HTML]{691C97}"
|
26
|
+
end: "}"
|
27
|
+
selector: support
|
28
|
+
- begin: "{\\color[HTML]{234A97}"
|
29
|
+
end: "}"
|
30
|
+
selector: variable
|
31
|
+
- begin: "{\\color[HTML]{794938}"
|
32
|
+
end: "}"
|
33
|
+
selector: punctuation.separator
|
34
|
+
- begin: "{\\color[HTML]{B52A1D}\\textbf{"
|
35
|
+
end: "}}"
|
36
|
+
selector: invalid.deprecated
|
37
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{B52A1D}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}\textit{
|
38
|
+
end: "}}"
|
39
|
+
selector: invalid.illegal
|
40
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{829AC2}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{080808}
|
41
|
+
end: "}"
|
42
|
+
selector: string source
|
43
|
+
- begin: "{\\color[HTML]{696969}\\textbf{"
|
44
|
+
end: "}}"
|
45
|
+
selector: string constant
|
46
|
+
- begin: "{\\color[HTML]{234A97}"
|
47
|
+
end: "}"
|
48
|
+
selector: string variable
|
49
|
+
- begin: "{\\color[HTML]{CF5628}"
|
50
|
+
end: "}"
|
51
|
+
selector: string.regexp
|
52
|
+
- begin: "{\\color[HTML]{CF5628}\\textbf{"
|
53
|
+
end: "}}"
|
54
|
+
selector: string.regexp.character-class, string.regexp constant.character.escaped, string.regexp source.ruby.embedded, string.regexp string.regexp.arbitrary-repitition
|
55
|
+
- begin: "{\\color[HTML]{811F24}\\textbf{"
|
56
|
+
end: "}}"
|
57
|
+
selector: string.regexp constant.character.escape
|
58
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{829AC2}{\rule[-0.5ex]{0pt}{2.0ex}
|
59
|
+
end: "}"
|
60
|
+
selector: text source
|
61
|
+
- begin: "{\\color[HTML]{693A17}"
|
62
|
+
end: "}"
|
63
|
+
selector: support.function
|
64
|
+
- begin: "{\\color[HTML]{B4371F}"
|
65
|
+
end: "}"
|
66
|
+
selector: support.constant
|
67
|
+
- begin: "{\\color[HTML]{234A97}"
|
68
|
+
end: "}"
|
69
|
+
selector: support.variable
|
70
|
+
- begin: "{\\color[HTML]{693A17}"
|
71
|
+
end: "}"
|
72
|
+
selector: markup.list
|
73
|
+
- begin: "{\\color[HTML]{19356D}\\textbf{"
|
74
|
+
end: "}}"
|
75
|
+
selector: markup.heading | markup.heading entity.name
|
76
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{C5C5C5}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{0B6125}\textit{
|
77
|
+
end: "}}"
|
78
|
+
selector: markup.quote
|
79
|
+
- begin: "{\\color[HTML]{080808}\\textit{"
|
80
|
+
end: "}}"
|
81
|
+
selector: markup.italic
|
82
|
+
- begin: "{\\color[HTML]{080808}\\textbf{"
|
83
|
+
end: "}}"
|
84
|
+
selector: markup.bold
|
85
|
+
- begin: "{\\color[HTML]{080808}\\underline{"
|
86
|
+
end: "}}"
|
87
|
+
selector: markup.underline
|
88
|
+
- begin: "{\\color[HTML]{234A97}\\textit{"
|
89
|
+
end: "}}"
|
90
|
+
selector: markup.link
|
91
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{C5C5C5}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{234A97}
|
92
|
+
end: "}"
|
93
|
+
selector: markup.raw
|
94
|
+
- begin: "{\\color[HTML]{B52A1D}"
|
95
|
+
end: "}"
|
96
|
+
selector: markup.deleted
|
97
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{DCDCDC}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{19356D}\textbf{
|
98
|
+
end: "}}"
|
99
|
+
selector: meta.separator
|
100
|
+
listing:
|
101
|
+
begin: |
|
102
|
+
\newcolumntype{C}{>{\color[HTML]{080808}\columncolor[HTML]{F5F5F5}}l}
|
103
|
+
\newcolumntype{N}{>{\color[HTML]{000000}\columncolor[HTML]{7496CF}}l}
|
104
|
+
\begin{longtable}{NC}
|
105
|
+
|
106
|
+
end: |
|
107
|
+
\end{longtable}
|
108
|
+
|
109
|
+
document:
|
110
|
+
begin: |
|
111
|
+
\documentclass[a4paper,landscape]{article}
|
112
|
+
\usepackage{xcolor}
|
113
|
+
\usepackage{colortbl}
|
114
|
+
\usepackage{longtable}
|
115
|
+
\usepackage[left=2cm,top=1cm,right=3cm,nohead,nofoot]{geometry}
|
116
|
+
\usepackage[T1]{fontenc}
|
117
|
+
\usepackage[scaled]{beramono}
|
118
|
+
\begin{document}
|
119
|
+
|
120
|
+
end: |
|
121
|
+
\end{document}
|
122
|
+
|
123
|
+
filter: "@escaped.gsub(/(\\$)/, '\\\\\\\\\\1').gsub(/\\\\(?!\\$)/, '$\\\\\\\\backslash$').gsub(/(_|\\{|\\}|&|\\#|%)/, '\\\\\\\\\\1').gsub(/~/, '\\\\textasciitilde ').gsub(/ /,'\\\\hspace{1ex}').gsub(/\\t| /,'\\\\hspace{3ex}').gsub(/\\\"/, \"''\").gsub(/(\\^)/,'\\\\\\\\\\1{}')"
|
124
|
+
line-numbers:
|
125
|
+
begin: \texttt{
|
126
|
+
end: "}&\\mbox{\\texttt{"
|
@@ -0,0 +1,132 @@
|
|
1
|
+
---
|
2
|
+
name: Eiffel
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: "{\\color[HTML]{00B418}"
|
8
|
+
end: "}"
|
9
|
+
selector: comment
|
10
|
+
- begin: "{\\color[HTML]{0206FF}\\textit{"
|
11
|
+
end: "}}"
|
12
|
+
selector: variable
|
13
|
+
- begin: "{\\color[HTML]{0100B6}\\textbf{"
|
14
|
+
end: "}}"
|
15
|
+
selector: keyword
|
16
|
+
- begin: "{\\color[HTML]{CD0000}\\textit{"
|
17
|
+
end: "}}"
|
18
|
+
selector: constant.numeric
|
19
|
+
- begin: "{\\color[HTML]{C5060B}\\textit{"
|
20
|
+
end: "}}"
|
21
|
+
selector: constant
|
22
|
+
- begin: "{\\color[HTML]{585CF6}\\textit{"
|
23
|
+
end: "}}"
|
24
|
+
selector: constant.language
|
25
|
+
- begin: "{\\color[HTML]{D80800}"
|
26
|
+
end: "}"
|
27
|
+
selector: string
|
28
|
+
- begin: "{\\color[HTML]{26B31A}"
|
29
|
+
end: "}"
|
30
|
+
selector: constant.character.escape, string source
|
31
|
+
- begin: "{\\color[HTML]{1A921C}"
|
32
|
+
end: "}"
|
33
|
+
selector: meta.preprocessor
|
34
|
+
- begin: "{\\color[HTML]{0C450D}\\textbf{"
|
35
|
+
end: "}}"
|
36
|
+
selector: keyword.control.import
|
37
|
+
- begin: "{\\color[HTML]{0000A2}\\textbf{"
|
38
|
+
end: "}}"
|
39
|
+
selector: entity.name.function, keyword.other.name-of-parameter.objc
|
40
|
+
- begin: "{\\textit{"
|
41
|
+
end: "}}"
|
42
|
+
selector: entity.name.type
|
43
|
+
- begin: "{\\textit{"
|
44
|
+
end: "}}"
|
45
|
+
selector: entity.other.inherited-class
|
46
|
+
- begin: "{\\textit{"
|
47
|
+
end: "}}"
|
48
|
+
selector: variable.parameter
|
49
|
+
- begin: "{\\color[HTML]{70727E}"
|
50
|
+
end: "}"
|
51
|
+
selector: storage.type.method
|
52
|
+
- begin: "{\\textit{"
|
53
|
+
end: "}}"
|
54
|
+
selector: meta.section entity.name.section, declaration.section entity.name.section
|
55
|
+
- begin: "{\\color[HTML]{3C4C72}\\textbf{"
|
56
|
+
end: "}}"
|
57
|
+
selector: support.function
|
58
|
+
- begin: "{\\color[HTML]{6D79DE}\\textbf{"
|
59
|
+
end: "}}"
|
60
|
+
selector: support.class, support.type
|
61
|
+
- begin: "{\\color[HTML]{06960E}\\textbf{"
|
62
|
+
end: "}}"
|
63
|
+
selector: support.constant
|
64
|
+
- begin: "{\\color[HTML]{21439C}\\textbf{"
|
65
|
+
end: "}}"
|
66
|
+
selector: support.variable
|
67
|
+
- begin: "{\\color[HTML]{687687}"
|
68
|
+
end: "}"
|
69
|
+
selector: keyword.operator.js
|
70
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{990000}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FFFFFF}
|
71
|
+
end: "}"
|
72
|
+
selector: invalid
|
73
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{FFD0D0}{\rule[-0.5ex]{0pt}{2.0ex}
|
74
|
+
end: "}"
|
75
|
+
selector: invalid.deprecated.trailing-whitespace
|
76
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{6597F6}{\rule[-0.5ex]{0pt}{2.0ex}
|
77
|
+
end: "}"
|
78
|
+
selector: text source, string.unquoted
|
79
|
+
- begin: "{\\color[HTML]{68685B}"
|
80
|
+
end: "}"
|
81
|
+
selector: meta.xml-processing, declaration.xml-processing
|
82
|
+
- begin: "{\\color[HTML]{888888}"
|
83
|
+
end: "}"
|
84
|
+
selector: meta.doctype, declaration.doctype
|
85
|
+
- begin: "{\\textit{"
|
86
|
+
end: "}}"
|
87
|
+
selector: meta.doctype.DTD, declaration.doctype.DTD
|
88
|
+
- begin: "{\\color[HTML]{1C02FF}"
|
89
|
+
end: "}"
|
90
|
+
selector: meta.tag, declaration.tag
|
91
|
+
- begin: "{\\textbf{"
|
92
|
+
end: "}}"
|
93
|
+
selector: entity.name.tag
|
94
|
+
- begin: "{\\textit{"
|
95
|
+
end: "}}"
|
96
|
+
selector: entity.other.attribute-name
|
97
|
+
- begin: "{\\color[HTML]{0C07FF}\\textbf{"
|
98
|
+
end: "}}"
|
99
|
+
selector: markup.heading
|
100
|
+
- begin: "{\\color[HTML]{000000}\\textit{"
|
101
|
+
end: "}}"
|
102
|
+
selector: markup.quote
|
103
|
+
- begin: "{\\color[HTML]{B90690}"
|
104
|
+
end: "}"
|
105
|
+
selector: markup.list
|
106
|
+
listing:
|
107
|
+
begin: |
|
108
|
+
\newcolumntype{C}{>{\color[HTML]{000000}\columncolor[HTML]{FFFFFF}}l}
|
109
|
+
\newcolumntype{N}{>{\color[HTML]{000000}\columncolor[HTML]{C3DCFF}}l}
|
110
|
+
\begin{longtable}{NC}
|
111
|
+
|
112
|
+
end: |
|
113
|
+
\end{longtable}
|
114
|
+
|
115
|
+
document:
|
116
|
+
begin: |
|
117
|
+
\documentclass[a4paper,landscape]{article}
|
118
|
+
\usepackage{xcolor}
|
119
|
+
\usepackage{colortbl}
|
120
|
+
\usepackage{longtable}
|
121
|
+
\usepackage[left=2cm,top=1cm,right=3cm,nohead,nofoot]{geometry}
|
122
|
+
\usepackage[T1]{fontenc}
|
123
|
+
\usepackage[scaled]{beramono}
|
124
|
+
\begin{document}
|
125
|
+
|
126
|
+
end: |
|
127
|
+
\end{document}
|
128
|
+
|
129
|
+
filter: "@escaped.gsub(/(\\$)/, '\\\\\\\\\\1').gsub(/\\\\(?!\\$)/, '$\\\\\\\\backslash$').gsub(/(_|\\{|\\}|&|\\#|%)/, '\\\\\\\\\\1').gsub(/~/, '\\\\textasciitilde ').gsub(/ /,'\\\\hspace{1ex}').gsub(/\\t| /,'\\\\hspace{3ex}').gsub(/\\\"/, \"''\").gsub(/(\\^)/,'\\\\\\\\\\1{}')"
|
130
|
+
line-numbers:
|
131
|
+
begin: \texttt{
|
132
|
+
end: "}&\\mbox{\\texttt{"
|
@@ -0,0 +1,123 @@
|
|
1
|
+
---
|
2
|
+
name: Espresso Libre
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: "{\\color[HTML]{0066FF}\\textit{"
|
8
|
+
end: "}}"
|
9
|
+
selector: comment
|
10
|
+
- begin: "{\\color[HTML]{43A8ED}\\textbf{"
|
11
|
+
end: "}}"
|
12
|
+
selector: keyword, storage
|
13
|
+
- begin: "{\\color[HTML]{44AA43}"
|
14
|
+
end: "}"
|
15
|
+
selector: constant.numeric
|
16
|
+
- begin: "{\\color[HTML]{C5656B}\\textbf{"
|
17
|
+
end: "}}"
|
18
|
+
selector: constant
|
19
|
+
- begin: "{\\color[HTML]{585CF6}\\textbf{"
|
20
|
+
end: "}}"
|
21
|
+
selector: constant.language
|
22
|
+
- begin: "{\\color[HTML]{318495}"
|
23
|
+
end: "}"
|
24
|
+
selector: variable.language, variable.other
|
25
|
+
- begin: "{\\color[HTML]{049B0A}"
|
26
|
+
end: "}"
|
27
|
+
selector: string
|
28
|
+
- begin: "{\\color[HTML]{2FE420}"
|
29
|
+
end: "}"
|
30
|
+
selector: constant.character.escape, string source
|
31
|
+
- begin: "{\\color[HTML]{1A921C}"
|
32
|
+
end: "}"
|
33
|
+
selector: meta.preprocessor
|
34
|
+
- begin: "{\\color[HTML]{9AFF87}\\textbf{"
|
35
|
+
end: "}}"
|
36
|
+
selector: keyword.control.import
|
37
|
+
- begin: "{\\color[HTML]{FF9358}\\textbf{"
|
38
|
+
end: "}}"
|
39
|
+
selector: entity.name.function, keyword.other.name-of-parameter.objc
|
40
|
+
- begin: "{\\underline{"
|
41
|
+
end: "}}"
|
42
|
+
selector: entity.name.type
|
43
|
+
- begin: "{\\textit{"
|
44
|
+
end: "}}"
|
45
|
+
selector: entity.other.inherited-class
|
46
|
+
- begin: "{\\textit{"
|
47
|
+
end: "}}"
|
48
|
+
selector: variable.parameter
|
49
|
+
- begin: "{\\color[HTML]{8B8E9C}"
|
50
|
+
end: "}"
|
51
|
+
selector: storage.type.method
|
52
|
+
- begin: "{\\textit{"
|
53
|
+
end: "}}"
|
54
|
+
selector: meta.section entity.name.section, declaration.section entity.name.section
|
55
|
+
- begin: "{\\color[HTML]{7290D9}\\textbf{"
|
56
|
+
end: "}}"
|
57
|
+
selector: support.function
|
58
|
+
- begin: "{\\color[HTML]{6D79DE}\\textbf{"
|
59
|
+
end: "}}"
|
60
|
+
selector: support.class, support.type
|
61
|
+
- begin: "{\\color[HTML]{00AF0E}\\textbf{"
|
62
|
+
end: "}}"
|
63
|
+
selector: support.constant
|
64
|
+
- begin: "{\\color[HTML]{2F5FE0}\\textbf{"
|
65
|
+
end: "}}"
|
66
|
+
selector: support.variable
|
67
|
+
- begin: "{\\color[HTML]{687687}"
|
68
|
+
end: "}"
|
69
|
+
selector: keyword.operator.js
|
70
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{990000}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FFFFFF}
|
71
|
+
end: "}"
|
72
|
+
selector: invalid
|
73
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{FFD0D0}{\rule[-0.5ex]{0pt}{2.0ex}
|
74
|
+
end: "}"
|
75
|
+
selector: invalid.deprecated.trailing-whitespace
|
76
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{CE9065}{\rule[-0.5ex]{0pt}{2.0ex}
|
77
|
+
end: "}"
|
78
|
+
selector: text source, string.unquoted
|
79
|
+
- begin: "{\\color[HTML]{8F7E65}"
|
80
|
+
end: "}"
|
81
|
+
selector: meta.tag.preprocessor.xml
|
82
|
+
- begin: "{\\color[HTML]{888888}"
|
83
|
+
end: "}"
|
84
|
+
selector: meta.tag.sgml.doctype
|
85
|
+
- begin: "{\\textit{"
|
86
|
+
end: "}}"
|
87
|
+
selector: string.quoted.docinfo.doctype.DTD
|
88
|
+
- begin: "{\\color[HTML]{43A8ED}"
|
89
|
+
end: "}"
|
90
|
+
selector: meta.tag, declaration.tag
|
91
|
+
- begin: "{\\textbf{"
|
92
|
+
end: "}}"
|
93
|
+
selector: entity.name.tag
|
94
|
+
- begin: "{\\textit{"
|
95
|
+
end: "}}"
|
96
|
+
selector: entity.other.attribute-name
|
97
|
+
listing:
|
98
|
+
begin: |
|
99
|
+
\newcolumntype{C}{>{\color[HTML]{BDAE9D}\columncolor[HTML]{2A211C}}l}
|
100
|
+
\newcolumntype{N}{>{\color[HTML]{000000}\columncolor[HTML]{C3DCFF}}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{"
|