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,132 @@
|
|
1
|
+
---
|
2
|
+
name: Active4D
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{ECF1FF}{\rule[-0.5ex]{0pt}{2.0ex}
|
8
|
+
end: "}"
|
9
|
+
selector: text.html source.active4d
|
10
|
+
- begin: "{\\color[HTML]{000000}"
|
11
|
+
end: "}"
|
12
|
+
selector: text.xml
|
13
|
+
- begin: "{\\color[HTML]{D33535}"
|
14
|
+
end: "}"
|
15
|
+
selector: comment.line
|
16
|
+
- begin: "{\\color[HTML]{D33435}"
|
17
|
+
end: "}"
|
18
|
+
selector: comment.block
|
19
|
+
- begin: "{\\color[HTML]{666666}"
|
20
|
+
end: "}"
|
21
|
+
selector: string
|
22
|
+
- begin: "{\\color[HTML]{66CCFF}\\textbf{"
|
23
|
+
end: "}}"
|
24
|
+
selector: string.interpolated variable
|
25
|
+
- begin: "{\\color[HTML]{A8017E}"
|
26
|
+
end: "}"
|
27
|
+
selector: constant.numeric
|
28
|
+
- begin: "{"
|
29
|
+
end: "}"
|
30
|
+
selector: constant.character, constant.other
|
31
|
+
- begin: "{\\color[HTML]{66CCFF}\\textbf{"
|
32
|
+
end: "}}"
|
33
|
+
selector: constant.other.date, constant.other.time
|
34
|
+
- begin: "{\\color[HTML]{A535AE}"
|
35
|
+
end: "}"
|
36
|
+
selector: constant.language
|
37
|
+
- begin: "{\\color[HTML]{6392FF}\\textbf{"
|
38
|
+
end: "}}"
|
39
|
+
selector: variable.other.local
|
40
|
+
- begin: "{\\color[HTML]{0053FF}\\textbf{"
|
41
|
+
end: "}}"
|
42
|
+
selector: variable
|
43
|
+
- begin: "{\\color[HTML]{0BB600}"
|
44
|
+
end: "}"
|
45
|
+
selector: variable.other.table-field
|
46
|
+
- begin: "{\\color[HTML]{006699}\\textbf{"
|
47
|
+
end: "}}"
|
48
|
+
selector: keyword
|
49
|
+
- begin: "{"
|
50
|
+
end: "}"
|
51
|
+
selector: keyword.operator
|
52
|
+
- begin: "{\\color[HTML]{FF5600}"
|
53
|
+
end: "}"
|
54
|
+
selector: storage
|
55
|
+
- begin: "{\\color[HTML]{21439C}"
|
56
|
+
end: "}"
|
57
|
+
selector: entity.name.type
|
58
|
+
- begin: "{"
|
59
|
+
end: "}"
|
60
|
+
selector: entity.other.inherited-class
|
61
|
+
- begin: "{\\color[HTML]{21439C}"
|
62
|
+
end: "}"
|
63
|
+
selector: entity.name.function
|
64
|
+
- begin: "{"
|
65
|
+
end: "}"
|
66
|
+
selector: variable.parameter
|
67
|
+
- begin: "{\\color[HTML]{7A7A7A}"
|
68
|
+
end: "}"
|
69
|
+
selector: meta.tag
|
70
|
+
- begin: "{\\color[HTML]{016CFF}"
|
71
|
+
end: "}"
|
72
|
+
selector: entity.name.tag
|
73
|
+
- begin: "{\\color[HTML]{963DFF}"
|
74
|
+
end: "}"
|
75
|
+
selector: entity.other.attribute-name
|
76
|
+
- begin: "{\\color[HTML]{45AE34}\\textbf{"
|
77
|
+
end: "}}"
|
78
|
+
selector: support.function
|
79
|
+
- begin: "{\\color[HTML]{B7734C}"
|
80
|
+
end: "}"
|
81
|
+
selector: support.constant
|
82
|
+
- begin: "{\\color[HTML]{A535AE}"
|
83
|
+
end: "}"
|
84
|
+
selector: support.type, support.class
|
85
|
+
- begin: "{\\color[HTML]{A535AE}"
|
86
|
+
end: "}"
|
87
|
+
selector: support.variable
|
88
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{990000}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FFFFFF}
|
89
|
+
end: "}"
|
90
|
+
selector: invalid
|
91
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{656565}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FFFFFF}
|
92
|
+
end: "}"
|
93
|
+
selector: meta.diff
|
94
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{1B63FF}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FFFFFF}
|
95
|
+
end: "}"
|
96
|
+
selector: meta.diff.range
|
97
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{FF7880}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{000000}
|
98
|
+
end: "}"
|
99
|
+
selector: markup.deleted.diff
|
100
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{98FF9A}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{000000}
|
101
|
+
end: "}"
|
102
|
+
selector: markup.inserted.diff
|
103
|
+
- begin: "{\\color[HTML]{5E5E5E}"
|
104
|
+
end: "}"
|
105
|
+
selector: source.diff
|
106
|
+
listing:
|
107
|
+
begin: |
|
108
|
+
\newcolumntype{C}{>{\color[HTML]{000000}\columncolor[HTML]{FFFFFF}}l}
|
109
|
+
\newcolumntype{N}{>{\color[HTML]{000000}\columncolor[HTML]{BAD6FD}}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,96 @@
|
|
1
|
+
---
|
2
|
+
name: All Hallow's Eve
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{434242}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FFFFFF}
|
8
|
+
end: "}"
|
9
|
+
selector: text
|
10
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{000000}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FFFFFF}
|
11
|
+
end: "}"
|
12
|
+
selector: source
|
13
|
+
- begin: "{\\color[HTML]{9933CC}"
|
14
|
+
end: "}"
|
15
|
+
selector: comment
|
16
|
+
- begin: "{\\color[HTML]{3387CC}"
|
17
|
+
end: "}"
|
18
|
+
selector: constant
|
19
|
+
- begin: "{\\color[HTML]{CC7833}"
|
20
|
+
end: "}"
|
21
|
+
selector: keyword
|
22
|
+
- begin: "{\\color[HTML]{D0D0FF}"
|
23
|
+
end: "}"
|
24
|
+
selector: meta.preprocessor.c
|
25
|
+
- begin: "{"
|
26
|
+
end: "}"
|
27
|
+
selector: keyword.control.import
|
28
|
+
- begin: "{"
|
29
|
+
end: "}"
|
30
|
+
selector: entity.name.function
|
31
|
+
- begin: "{\\textit{"
|
32
|
+
end: "}}"
|
33
|
+
selector: variable.parameter
|
34
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{9B9B9B}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{FFFFFF}
|
35
|
+
end: "}"
|
36
|
+
selector: source comment.block
|
37
|
+
- begin: "{\\color[HTML]{66CC33}"
|
38
|
+
end: "}"
|
39
|
+
selector: string
|
40
|
+
- begin: "{\\color[HTML]{AAAAAA}"
|
41
|
+
end: "}"
|
42
|
+
selector: string constant.character.escape
|
43
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{CCCC33}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{000000}
|
44
|
+
end: "}"
|
45
|
+
selector: string.interpolated
|
46
|
+
- begin: "{\\color[HTML]{CCCC33}"
|
47
|
+
end: "}"
|
48
|
+
selector: string.regexp
|
49
|
+
- begin: "{\\color[HTML]{CCCC33}"
|
50
|
+
end: "}"
|
51
|
+
selector: string.literal
|
52
|
+
- begin: "{\\color[HTML]{555555}"
|
53
|
+
end: "}"
|
54
|
+
selector: string.interpolated constant.character.escape
|
55
|
+
- begin: "{\\underline{"
|
56
|
+
end: "}}"
|
57
|
+
selector: entity.name.type
|
58
|
+
- begin: "{\\textit{"
|
59
|
+
end: "}}"
|
60
|
+
selector: entity.other.inherited-class
|
61
|
+
- begin: "{\\underline{"
|
62
|
+
end: "}}"
|
63
|
+
selector: entity.name.tag
|
64
|
+
- begin: "{"
|
65
|
+
end: "}"
|
66
|
+
selector: entity.other.attribute-name
|
67
|
+
- begin: "{\\color[HTML]{C83730}"
|
68
|
+
end: "}"
|
69
|
+
selector: support.function
|
70
|
+
listing:
|
71
|
+
begin: |
|
72
|
+
\newcolumntype{C}{>{\color[HTML]{FFFFFF}\columncolor[HTML]{000000}}l}
|
73
|
+
\newcolumntype{N}{>{\color[HTML]{FFFFFF}\columncolor[HTML]{73597E}}l}
|
74
|
+
\begin{longtable}{NC}
|
75
|
+
|
76
|
+
end: |
|
77
|
+
\end{longtable}
|
78
|
+
|
79
|
+
document:
|
80
|
+
begin: |
|
81
|
+
\documentclass[a4paper,landscape]{article}
|
82
|
+
\usepackage{xcolor}
|
83
|
+
\usepackage{colortbl}
|
84
|
+
\usepackage{longtable}
|
85
|
+
\usepackage[left=2cm,top=1cm,right=3cm,nohead,nofoot]{geometry}
|
86
|
+
\usepackage[T1]{fontenc}
|
87
|
+
\usepackage[scaled]{beramono}
|
88
|
+
\begin{document}
|
89
|
+
|
90
|
+
end: |
|
91
|
+
\end{document}
|
92
|
+
|
93
|
+
filter: "@escaped.gsub(/(\\$)/, '\\\\\\\\\\1').gsub(/\\\\(?!\\$)/, '$\\\\\\\\backslash$').gsub(/(_|\\{|\\}|&|\\#|%)/, '\\\\\\\\\\1').gsub(/~/, '\\\\textasciitilde ').gsub(/ /,'\\\\hspace{1ex}').gsub(/\\t| /,'\\\\hspace{3ex}').gsub(/\\\"/, \"''\").gsub(/(\\^)/,'\\\\\\\\\\1{}')"
|
94
|
+
line-numbers:
|
95
|
+
begin: \texttt{
|
96
|
+
end: "}&\\mbox{\\texttt{"
|
@@ -0,0 +1,171 @@
|
|
1
|
+
---
|
2
|
+
name: Amy
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{200020}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{404080}\textit{
|
8
|
+
end: "}}"
|
9
|
+
selector: comment.block
|
10
|
+
- begin: "{\\color[HTML]{999999}"
|
11
|
+
end: "}"
|
12
|
+
selector: string
|
13
|
+
- begin: "{\\color[HTML]{707090}"
|
14
|
+
end: "}"
|
15
|
+
selector: constant.language
|
16
|
+
- begin: "{\\color[HTML]{7090B0}"
|
17
|
+
end: "}"
|
18
|
+
selector: constant.numeric
|
19
|
+
- begin: "{\\textbf{"
|
20
|
+
end: "}}"
|
21
|
+
selector: constant.numeric.integer.int32
|
22
|
+
- begin: "{\\textit{"
|
23
|
+
end: "}}"
|
24
|
+
selector: constant.numeric.integer.int64
|
25
|
+
- begin: "{\\textbf{"
|
26
|
+
end: "}}"
|
27
|
+
selector: constant.numeric.integer.nativeint
|
28
|
+
- begin: "{\\underline{"
|
29
|
+
end: "}}"
|
30
|
+
selector: constant.numeric.floating-point.ocaml
|
31
|
+
- begin: "{\\color[HTML]{666666}"
|
32
|
+
end: "}"
|
33
|
+
selector: constant.character
|
34
|
+
- begin: "{\\color[HTML]{8080A0}"
|
35
|
+
end: "}"
|
36
|
+
selector: constant.language.boolean
|
37
|
+
- begin: "{"
|
38
|
+
end: "}"
|
39
|
+
selector: constant.language
|
40
|
+
- begin: "{"
|
41
|
+
end: "}"
|
42
|
+
selector: constant.other
|
43
|
+
- begin: "{\\color[HTML]{008080}"
|
44
|
+
end: "}"
|
45
|
+
selector: variable.language, variable.other
|
46
|
+
- begin: "{\\color[HTML]{A080FF}"
|
47
|
+
end: "}"
|
48
|
+
selector: keyword
|
49
|
+
- begin: "{\\color[HTML]{A0A0FF}"
|
50
|
+
end: "}"
|
51
|
+
selector: keyword.operator
|
52
|
+
- begin: "{\\color[HTML]{D0D0FF}"
|
53
|
+
end: "}"
|
54
|
+
selector: keyword.other.decorator
|
55
|
+
- begin: "{\\underline{"
|
56
|
+
end: "}}"
|
57
|
+
selector: keyword.operator.infix.floating-point.ocaml
|
58
|
+
- begin: "{\\underline{"
|
59
|
+
end: "}}"
|
60
|
+
selector: keyword.operator.prefix.floating-point.ocaml
|
61
|
+
- begin: "{\\color[HTML]{C080C0}"
|
62
|
+
end: "}"
|
63
|
+
selector: keyword.other.directive
|
64
|
+
- begin: "{\\color[HTML]{C080C0}\\underline{"
|
65
|
+
end: "}}"
|
66
|
+
selector: keyword.other.directive.line-number
|
67
|
+
- begin: "{\\color[HTML]{80A0FF}"
|
68
|
+
end: "}"
|
69
|
+
selector: keyword.control
|
70
|
+
- begin: "{\\color[HTML]{B0FFF0}"
|
71
|
+
end: "}"
|
72
|
+
selector: storage
|
73
|
+
- begin: "{\\color[HTML]{60B0FF}"
|
74
|
+
end: "}"
|
75
|
+
selector: entity.name.type.variant
|
76
|
+
- begin: "{\\color[HTML]{60B0FF}\\textit{"
|
77
|
+
end: "}}"
|
78
|
+
selector: storage.type.variant.polymorphic, entity.name.type.variant.polymorphic
|
79
|
+
- begin: "{\\color[HTML]{B000B0}"
|
80
|
+
end: "}"
|
81
|
+
selector: entity.name.type.module
|
82
|
+
- begin: "{\\color[HTML]{B000B0}\\underline{"
|
83
|
+
end: "}}"
|
84
|
+
selector: entity.name.type.module-type.ocaml
|
85
|
+
- begin: "{\\color[HTML]{A00050}"
|
86
|
+
end: "}"
|
87
|
+
selector: support.other
|
88
|
+
- begin: "{\\color[HTML]{70E080}"
|
89
|
+
end: "}"
|
90
|
+
selector: entity.name.type.class
|
91
|
+
- begin: "{\\color[HTML]{70E0A0}"
|
92
|
+
end: "}"
|
93
|
+
selector: entity.name.type.class-type
|
94
|
+
- begin: "{"
|
95
|
+
end: "}"
|
96
|
+
selector: entity.other.inherited-class
|
97
|
+
- begin: "{\\color[HTML]{50A0A0}"
|
98
|
+
end: "}"
|
99
|
+
selector: entity.name.function
|
100
|
+
- begin: "{\\color[HTML]{80B0B0}"
|
101
|
+
end: "}"
|
102
|
+
selector: variable.parameter
|
103
|
+
- begin: "{\\color[HTML]{3080A0}"
|
104
|
+
end: "}"
|
105
|
+
selector: entity.name.type.token
|
106
|
+
- begin: "{\\color[HTML]{3CB0D0}"
|
107
|
+
end: "}"
|
108
|
+
selector: entity.name.type.token.reference
|
109
|
+
- begin: "{\\color[HTML]{90E0E0}"
|
110
|
+
end: "}"
|
111
|
+
selector: entity.name.function.non-terminal
|
112
|
+
- begin: "{\\color[HTML]{C0F0F0}"
|
113
|
+
end: "}"
|
114
|
+
selector: entity.name.function.non-terminal.reference
|
115
|
+
- begin: "{\\color[HTML]{009090}"
|
116
|
+
end: "}"
|
117
|
+
selector: entity.name.tag
|
118
|
+
- begin: "{"
|
119
|
+
end: "}"
|
120
|
+
selector: entity.other.attribute-name
|
121
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{200020}{\rule[-0.5ex]{0pt}{2.0ex}
|
122
|
+
end: "}"
|
123
|
+
selector: support.constant
|
124
|
+
- begin: "{"
|
125
|
+
end: "}"
|
126
|
+
selector: support.type, support.class
|
127
|
+
- begin: "{"
|
128
|
+
end: "}"
|
129
|
+
selector: support.other.variable
|
130
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{FFFF00}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{400080}\textbf{
|
131
|
+
end: "}}"
|
132
|
+
selector: invalid.illegal
|
133
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{CC66FF}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{200020}
|
134
|
+
end: "}"
|
135
|
+
selector: invalid.deprecated
|
136
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{350060}{\rule[-0.5ex]{0pt}{2.0ex}
|
137
|
+
end: "}"
|
138
|
+
selector: source.camlp4.embedded
|
139
|
+
- begin: "{"
|
140
|
+
end: "}"
|
141
|
+
selector: source.camlp4.embedded.parser.ocaml
|
142
|
+
- begin: "{\\color[HTML]{805080}"
|
143
|
+
end: "}"
|
144
|
+
selector: punctuation
|
145
|
+
listing:
|
146
|
+
begin: |
|
147
|
+
\newcolumntype{C}{>{\color[HTML]{D0D0FF}\columncolor[HTML]{200020}}l}
|
148
|
+
\newcolumntype{N}{>{\color[HTML]{000000}\columncolor[HTML]{800000}}l}
|
149
|
+
\begin{longtable}{NC}
|
150
|
+
|
151
|
+
end: |
|
152
|
+
\end{longtable}
|
153
|
+
|
154
|
+
document:
|
155
|
+
begin: |
|
156
|
+
\documentclass[a4paper,landscape]{article}
|
157
|
+
\usepackage{xcolor}
|
158
|
+
\usepackage{colortbl}
|
159
|
+
\usepackage{longtable}
|
160
|
+
\usepackage[left=2cm,top=1cm,right=3cm,nohead,nofoot]{geometry}
|
161
|
+
\usepackage[T1]{fontenc}
|
162
|
+
\usepackage[scaled]{beramono}
|
163
|
+
\begin{document}
|
164
|
+
|
165
|
+
end: |
|
166
|
+
\end{document}
|
167
|
+
|
168
|
+
filter: "@escaped.gsub(/(\\$)/, '\\\\\\\\\\1').gsub(/\\\\(?!\\$)/, '$\\\\\\\\backslash$').gsub(/(_|\\{|\\}|&|\\#|%)/, '\\\\\\\\\\1').gsub(/~/, '\\\\textasciitilde ').gsub(/ /,'\\\\hspace{1ex}').gsub(/\\t| /,'\\\\hspace{3ex}').gsub(/\\\"/, \"''\").gsub(/(\\^)/,'\\\\\\\\\\1{}')"
|
169
|
+
line-numbers:
|
170
|
+
begin: \texttt{
|
171
|
+
end: "}&\\mbox{\\texttt{"
|
@@ -0,0 +1,111 @@
|
|
1
|
+
---
|
2
|
+
name: Blackboard
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: "{\\color[HTML]{AEAEAE}"
|
8
|
+
end: "}"
|
9
|
+
selector: comment
|
10
|
+
- begin: "{\\color[HTML]{D8FA3C}"
|
11
|
+
end: "}"
|
12
|
+
selector: constant
|
13
|
+
- begin: "{\\color[HTML]{FF6400}"
|
14
|
+
end: "}"
|
15
|
+
selector: entity
|
16
|
+
- begin: "{\\color[HTML]{FBDE2D}"
|
17
|
+
end: "}"
|
18
|
+
selector: keyword
|
19
|
+
- begin: "{\\color[HTML]{FBDE2D}"
|
20
|
+
end: "}"
|
21
|
+
selector: storage
|
22
|
+
- begin: "{\\color[HTML]{61CE3C}"
|
23
|
+
end: "}"
|
24
|
+
selector: string, meta.verbatim
|
25
|
+
- begin: "{\\color[HTML]{8DA6CE}"
|
26
|
+
end: "}"
|
27
|
+
selector: support
|
28
|
+
- begin: "{"
|
29
|
+
end: "}"
|
30
|
+
selector: variable
|
31
|
+
- begin: "{\\color[HTML]{AB2A1D}\\textit{"
|
32
|
+
end: "}}"
|
33
|
+
selector: invalid.deprecated
|
34
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{9D1E15}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
35
|
+
end: "}"
|
36
|
+
selector: invalid.illegal
|
37
|
+
- begin: "{\\color[HTML]{FF6400}\\textit{"
|
38
|
+
end: "}}"
|
39
|
+
selector: entity.other.inherited-class
|
40
|
+
- begin: "{\\color[HTML]{FF6400}"
|
41
|
+
end: "}"
|
42
|
+
selector: string constant.other.placeholder
|
43
|
+
- begin: "{\\color[HTML]{BECDE6}"
|
44
|
+
end: "}"
|
45
|
+
selector: meta.function-call.py
|
46
|
+
- begin: "{\\color[HTML]{7F90AA}"
|
47
|
+
end: "}"
|
48
|
+
selector: meta.tag, meta.tag entity
|
49
|
+
- begin: "{\\color[HTML]{FFFFFF}"
|
50
|
+
end: "}"
|
51
|
+
selector: entity.name.section
|
52
|
+
- begin: "{\\color[HTML]{D5E0F3}"
|
53
|
+
end: "}"
|
54
|
+
selector: keyword.type.variant
|
55
|
+
- begin: "{\\color[HTML]{F8F8F8}"
|
56
|
+
end: "}"
|
57
|
+
selector: source.ocaml keyword.operator.symbol
|
58
|
+
- begin: "{\\color[HTML]{8DA6CE}"
|
59
|
+
end: "}"
|
60
|
+
selector: source.ocaml keyword.operator.symbol.infix
|
61
|
+
- begin: "{\\color[HTML]{8DA6CE}"
|
62
|
+
end: "}"
|
63
|
+
selector: source.ocaml keyword.operator.symbol.prefix
|
64
|
+
- begin: "{\\underline{"
|
65
|
+
end: "}}"
|
66
|
+
selector: source.ocaml keyword.operator.symbol.infix.floating-point
|
67
|
+
- begin: "{\\underline{"
|
68
|
+
end: "}}"
|
69
|
+
selector: source.ocaml keyword.operator.symbol.prefix.floating-point
|
70
|
+
- begin: "{\\underline{"
|
71
|
+
end: "}}"
|
72
|
+
selector: source.ocaml constant.numeric.floating-point
|
73
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{F7F7F8}{\rule[-0.5ex]{0pt}{2.0ex}
|
74
|
+
end: "}"
|
75
|
+
selector: text.tex.latex meta.function.environment
|
76
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{7691F3}{\rule[-0.5ex]{0pt}{2.0ex}
|
77
|
+
end: "}"
|
78
|
+
selector: text.tex.latex meta.function.environment meta.function.environment
|
79
|
+
- begin: "{\\color[HTML]{FBDE2D}"
|
80
|
+
end: "}"
|
81
|
+
selector: text.tex.latex support.function
|
82
|
+
- begin: "{\\color[HTML]{FFFFFF}"
|
83
|
+
end: "}"
|
84
|
+
selector: source.plist string.unquoted, source.plist keyword.operator
|
85
|
+
listing:
|
86
|
+
begin: |
|
87
|
+
\newcolumntype{C}{>{\color[HTML]{F8F8F8}\columncolor[HTML]{0C1021}}l}
|
88
|
+
\newcolumntype{N}{>{\color[HTML]{FFFFFF}\columncolor[HTML]{253B76}}l}
|
89
|
+
\begin{longtable}{NC}
|
90
|
+
|
91
|
+
end: |
|
92
|
+
\end{longtable}
|
93
|
+
|
94
|
+
document:
|
95
|
+
begin: |
|
96
|
+
\documentclass[a4paper,landscape]{article}
|
97
|
+
\usepackage{xcolor}
|
98
|
+
\usepackage{colortbl}
|
99
|
+
\usepackage{longtable}
|
100
|
+
\usepackage[left=2cm,top=1cm,right=3cm,nohead,nofoot]{geometry}
|
101
|
+
\usepackage[T1]{fontenc}
|
102
|
+
\usepackage[scaled]{beramono}
|
103
|
+
\begin{document}
|
104
|
+
|
105
|
+
end: |
|
106
|
+
\end{document}
|
107
|
+
|
108
|
+
filter: "@escaped.gsub(/(\\$)/, '\\\\\\\\\\1').gsub(/\\\\(?!\\$)/, '$\\\\\\\\backslash$').gsub(/(_|\\{|\\}|&|\\#|%)/, '\\\\\\\\\\1').gsub(/~/, '\\\\textasciitilde ').gsub(/ /,'\\\\hspace{1ex}').gsub(/\\t| /,'\\\\hspace{3ex}').gsub(/\\\"/, \"''\").gsub(/(\\^)/,'\\\\\\\\\\1{}')"
|
109
|
+
line-numbers:
|
110
|
+
begin: \texttt{
|
111
|
+
end: "}&\\mbox{\\texttt{"
|