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,153 @@
|
|
1
|
+
---
|
2
|
+
name: Twilight
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: "{\\color[HTML]{5F5A60}\\textit{"
|
8
|
+
end: "}}"
|
9
|
+
selector: comment
|
10
|
+
- begin: "{\\color[HTML]{CF6A4C}"
|
11
|
+
end: "}"
|
12
|
+
selector: constant
|
13
|
+
- begin: "{\\color[HTML]{9B703F}"
|
14
|
+
end: "}"
|
15
|
+
selector: entity
|
16
|
+
- begin: "{\\color[HTML]{CDA869}"
|
17
|
+
end: "}"
|
18
|
+
selector: keyword
|
19
|
+
- begin: "{\\color[HTML]{F9EE98}"
|
20
|
+
end: "}"
|
21
|
+
selector: storage
|
22
|
+
- begin: "{\\color[HTML]{8F9D6A}"
|
23
|
+
end: "}"
|
24
|
+
selector: string
|
25
|
+
- begin: "{\\color[HTML]{9B859D}"
|
26
|
+
end: "}"
|
27
|
+
selector: support
|
28
|
+
- begin: "{\\color[HTML]{7587A6}"
|
29
|
+
end: "}"
|
30
|
+
selector: variable
|
31
|
+
- begin: "{\\color[HTML]{D2A8A1}\\textit{"
|
32
|
+
end: "}}"
|
33
|
+
selector: invalid.deprecated
|
34
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{241A24}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
35
|
+
end: "}"
|
36
|
+
selector: invalid.illegal
|
37
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{A3A6AD}{\rule[-0.5ex]{0pt}{2.0ex}
|
38
|
+
end: "}"
|
39
|
+
selector: text source
|
40
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{9C9EA4}{\rule[-0.5ex]{0pt}{2.0ex}
|
41
|
+
end: "}"
|
42
|
+
selector: text.html.ruby source
|
43
|
+
- begin: "{\\color[HTML]{9B5C2E}\\textit{"
|
44
|
+
end: "}}"
|
45
|
+
selector: entity.other.inherited-class
|
46
|
+
- begin: "{\\color[HTML]{DAEFA3}"
|
47
|
+
end: "}"
|
48
|
+
selector: string source
|
49
|
+
- begin: "{\\color[HTML]{DDF2A4}"
|
50
|
+
end: "}"
|
51
|
+
selector: string constant
|
52
|
+
- begin: "{\\color[HTML]{E9C062}"
|
53
|
+
end: "}"
|
54
|
+
selector: string.regexp
|
55
|
+
- begin: "{\\color[HTML]{CF7D34}"
|
56
|
+
end: "}"
|
57
|
+
selector: string.regexp constant.character.escape, string.regexp source.ruby.embedded, string.regexp string.regexp.arbitrary-repitition
|
58
|
+
- begin: "{\\color[HTML]{8A9A95}"
|
59
|
+
end: "}"
|
60
|
+
selector: string variable
|
61
|
+
- begin: "{\\color[HTML]{DAD085}"
|
62
|
+
end: "}"
|
63
|
+
selector: support.function
|
64
|
+
- begin: "{\\color[HTML]{CF6A4C}"
|
65
|
+
end: "}"
|
66
|
+
selector: support.constant
|
67
|
+
- begin: "{\\color[HTML]{8996A8}"
|
68
|
+
end: "}"
|
69
|
+
selector: meta.preprocessor.c
|
70
|
+
- begin: "{\\color[HTML]{AFC4DB}"
|
71
|
+
end: "}"
|
72
|
+
selector: meta.preprocessor.c keyword
|
73
|
+
- begin: "{\\color[HTML]{494949}"
|
74
|
+
end: "}"
|
75
|
+
selector: meta.tag.sgml.doctype, meta.tag.sgml.doctype entity, meta.tag.sgml.doctype string, meta.tag.preprocessor.xml, meta.tag.preprocessor.xml entity, meta.tag.preprocessor.xml string
|
76
|
+
- begin: "{\\color[HTML]{AC885B}"
|
77
|
+
end: "}"
|
78
|
+
selector: declaration.tag, declaration.tag entity, meta.tag, meta.tag entity
|
79
|
+
- begin: "{\\color[HTML]{E0C589}"
|
80
|
+
end: "}"
|
81
|
+
selector: declaration.tag.inline, declaration.tag.inline entity, source entity.name.tag, source entity.other.attribute-name, meta.tag.inline, meta.tag.inline entity
|
82
|
+
- begin: "{\\color[HTML]{CDA869}"
|
83
|
+
end: "}"
|
84
|
+
selector: meta.selector.css entity.name.tag
|
85
|
+
- begin: "{\\color[HTML]{8F9D6A}"
|
86
|
+
end: "}"
|
87
|
+
selector: meta.selector.css entity.other.attribute-name.tag.pseudo-class
|
88
|
+
- begin: "{\\color[HTML]{8B98AB}"
|
89
|
+
end: "}"
|
90
|
+
selector: meta.selector.css entity.other.attribute-name.id
|
91
|
+
- begin: "{\\color[HTML]{9B703F}"
|
92
|
+
end: "}"
|
93
|
+
selector: meta.selector.css entity.other.attribute-name.class
|
94
|
+
- begin: "{\\color[HTML]{C5AF75}"
|
95
|
+
end: "}"
|
96
|
+
selector: support.type.property-name.css
|
97
|
+
- begin: "{\\color[HTML]{F9EE98}"
|
98
|
+
end: "}"
|
99
|
+
selector: meta.property-group support.constant.property-value.css, meta.property-value support.constant.property-value.css
|
100
|
+
- begin: "{\\color[HTML]{8693A5}"
|
101
|
+
end: "}"
|
102
|
+
selector: meta.preprocessor.at-rule keyword.control.at-rule
|
103
|
+
- begin: "{\\color[HTML]{CA7840}"
|
104
|
+
end: "}"
|
105
|
+
selector: meta.property-value support.constant.named-color.css, meta.property-value constant
|
106
|
+
- begin: "{\\color[HTML]{8F9D6A}"
|
107
|
+
end: "}"
|
108
|
+
selector: meta.constructor.argument.css
|
109
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{0E2231}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}\textit{
|
110
|
+
end: "}}"
|
111
|
+
selector: meta.diff, meta.diff.header, meta.separator
|
112
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{420E09}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
113
|
+
end: "}"
|
114
|
+
selector: markup.deleted
|
115
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{4A410D}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
116
|
+
end: "}"
|
117
|
+
selector: markup.changed
|
118
|
+
- begin: \setlength{\fboxsep}{0ex}\colorbox[HTML]{253B22}{\rule[-0.5ex]{0pt}{2.0ex}\color[HTML]{F8F8F8}
|
119
|
+
end: "}"
|
120
|
+
selector: markup.inserted
|
121
|
+
- begin: "{\\color[HTML]{F9EE98}"
|
122
|
+
end: "}"
|
123
|
+
selector: markup.list
|
124
|
+
- begin: "{\\color[HTML]{CF6A4C}"
|
125
|
+
end: "}"
|
126
|
+
selector: markup.heading
|
127
|
+
listing:
|
128
|
+
begin: |
|
129
|
+
\newcolumntype{C}{>{\color[HTML]{F8F8F8}\columncolor[HTML]{141414}}l}
|
130
|
+
\newcolumntype{N}{>{\color[HTML]{000000}\columncolor[HTML]{DDF0FF}}l}
|
131
|
+
\begin{longtable}{NC}
|
132
|
+
|
133
|
+
end: |
|
134
|
+
\end{longtable}
|
135
|
+
|
136
|
+
document:
|
137
|
+
begin: |
|
138
|
+
\documentclass[a4paper,landscape]{article}
|
139
|
+
\usepackage{xcolor}
|
140
|
+
\usepackage{colortbl}
|
141
|
+
\usepackage{longtable}
|
142
|
+
\usepackage[left=2cm,top=1cm,right=3cm,nohead,nofoot]{geometry}
|
143
|
+
\usepackage[T1]{fontenc}
|
144
|
+
\usepackage[scaled]{beramono}
|
145
|
+
\begin{document}
|
146
|
+
|
147
|
+
end: |
|
148
|
+
\end{document}
|
149
|
+
|
150
|
+
filter: "@escaped.gsub(/(\\$)/, '\\\\\\\\\\1').gsub(/\\\\(?!\\$)/, '$\\\\\\\\backslash$').gsub(/(_|\\{|\\}|&|\\#|%)/, '\\\\\\\\\\1').gsub(/~/, '\\\\textasciitilde ').gsub(/ /,'\\\\hspace{1ex}').gsub(/\\t| /,'\\\\hspace{3ex}').gsub(/\\\"/, \"''\").gsub(/(\\^)/,'\\\\\\\\\\1{}')"
|
151
|
+
line-numbers:
|
152
|
+
begin: \texttt{
|
153
|
+
end: "}&\\mbox{\\texttt{"
|
@@ -0,0 +1,126 @@
|
|
1
|
+
---
|
2
|
+
name: Zenburnesque
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: "}}\\\\"
|
6
|
+
tags:
|
7
|
+
- begin: "{\\color[HTML]{709070}\\textit{"
|
8
|
+
end: "}}"
|
9
|
+
selector: comment
|
10
|
+
- begin: "{\\textbf{"
|
11
|
+
end: "}}"
|
12
|
+
selector: keyword.other.directive
|
13
|
+
- begin: "{\\underline{"
|
14
|
+
end: "}}"
|
15
|
+
selector: keyword.other.directive.line-number
|
16
|
+
- begin: "{\\color[HTML]{FF8080}"
|
17
|
+
end: "}"
|
18
|
+
selector: constant.character
|
19
|
+
- begin: "{\\color[HTML]{FF2020}"
|
20
|
+
end: "}"
|
21
|
+
selector: string
|
22
|
+
- begin: "{\\color[HTML]{22C0FF}"
|
23
|
+
end: "}"
|
24
|
+
selector: constant.numeric
|
25
|
+
- begin: "{\\underline{"
|
26
|
+
end: "}}"
|
27
|
+
selector: constant.numeric.floating-point
|
28
|
+
- begin: "{"
|
29
|
+
end: "}"
|
30
|
+
selector: constant.language
|
31
|
+
- begin: "{"
|
32
|
+
end: "}"
|
33
|
+
selector: constant.character, constant.other
|
34
|
+
- begin: "{"
|
35
|
+
end: "}"
|
36
|
+
selector: variable.parameter, variable.other
|
37
|
+
- begin: "{\\color[HTML]{FFFFA0}"
|
38
|
+
end: "}"
|
39
|
+
selector: keyword
|
40
|
+
- begin: "{\\color[HTML]{FF8000}\\textbf{"
|
41
|
+
end: "}}"
|
42
|
+
selector: entity.name.module, support.other.module
|
43
|
+
- begin: "{\\color[HTML]{FFFFA0}"
|
44
|
+
end: "}"
|
45
|
+
selector: keyword.operator
|
46
|
+
- begin: "{\\underline{"
|
47
|
+
end: "}}"
|
48
|
+
selector: source.ocaml keyword.operator.symbol.infix.floating-point
|
49
|
+
- begin: "{\\underline{"
|
50
|
+
end: "}}"
|
51
|
+
selector: source.ocaml keyword.operator.symbol.prefix.floating-point
|
52
|
+
- begin: "{\\color[HTML]{6080FF}"
|
53
|
+
end: "}"
|
54
|
+
selector: storage.type
|
55
|
+
- begin: "{\\color[HTML]{4080A0}"
|
56
|
+
end: "}"
|
57
|
+
selector: entity.name.class.variant
|
58
|
+
- begin: "{"
|
59
|
+
end: "}"
|
60
|
+
selector: storage
|
61
|
+
- begin: "{\\color[HTML]{F09040}"
|
62
|
+
end: "}"
|
63
|
+
selector: entity.name.type
|
64
|
+
- begin: "{"
|
65
|
+
end: "}"
|
66
|
+
selector: entity.other.inherited-class
|
67
|
+
- begin: "{\\color[HTML]{FFCC66}\\textbf{"
|
68
|
+
end: "}}"
|
69
|
+
selector: entity.name.function
|
70
|
+
- begin: "{\\color[HTML]{FFE000}"
|
71
|
+
end: "}"
|
72
|
+
selector: storage.type.user-defined
|
73
|
+
- begin: "{\\color[HTML]{F4A020}"
|
74
|
+
end: "}"
|
75
|
+
selector: entity.name.type.class.type
|
76
|
+
- begin: "{"
|
77
|
+
end: "}"
|
78
|
+
selector: variable.parameter
|
79
|
+
- begin: "{"
|
80
|
+
end: "}"
|
81
|
+
selector: entity.name.tag
|
82
|
+
- begin: "{"
|
83
|
+
end: "}"
|
84
|
+
selector: entity.other.attribute-name
|
85
|
+
- begin: "{"
|
86
|
+
end: "}"
|
87
|
+
selector: support.function
|
88
|
+
- begin: "{"
|
89
|
+
end: "}"
|
90
|
+
selector: support.constant
|
91
|
+
- begin: "{"
|
92
|
+
end: "}"
|
93
|
+
selector: support.type, support.class
|
94
|
+
- begin: "{"
|
95
|
+
end: "}"
|
96
|
+
selector: support.variable
|
97
|
+
- begin: "{"
|
98
|
+
end: "}"
|
99
|
+
selector: invalid
|
100
|
+
listing:
|
101
|
+
begin: |
|
102
|
+
\newcolumntype{C}{>{\color[HTML]{DEDEDE}\columncolor[HTML]{404040}}l}
|
103
|
+
\newcolumntype{N}{>{\color[HTML]{000000}\columncolor[HTML]{A0A0C0}}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,131 @@
|
|
1
|
+
---
|
2
|
+
name: TXT2TAGS
|
3
|
+
tags:
|
4
|
+
#- selector : TXT2TAGS
|
5
|
+
# begin : "<html>\n<body>\n"
|
6
|
+
# end : "</body>\n</html>\n"
|
7
|
+
# filters:
|
8
|
+
# - indent
|
9
|
+
- selector : markup.other.paragraph - markup.raw
|
10
|
+
begin : "<p>\n"
|
11
|
+
end : "\n</p>\n"
|
12
|
+
filters:
|
13
|
+
- strip
|
14
|
+
- indent
|
15
|
+
- selector : markup.heading.plain
|
16
|
+
cbegin : '"<h#{predecessor.text.size}>"'
|
17
|
+
cend : '"</h#{successor.text.size}>\n"'
|
18
|
+
filters :
|
19
|
+
- strip
|
20
|
+
- selector : other.filler
|
21
|
+
invisible: true
|
22
|
+
- selector : keyword.other - markup.raw
|
23
|
+
invisible: true
|
24
|
+
- selector : comment
|
25
|
+
invisible: true
|
26
|
+
- selector : variable - markup.raw
|
27
|
+
invisible: true
|
28
|
+
- selector : markup.other.email - markup.raw
|
29
|
+
cbegin : '"<a href=\"mailto:#{text}\">"'
|
30
|
+
end : </a>
|
31
|
+
- selector : markup.other.link - markup.raw
|
32
|
+
cbegin : '"<a href=\"#{text}\">"'
|
33
|
+
end : </a>
|
34
|
+
- selector : meta.link.complex markup.other.link - markup.raw
|
35
|
+
invisible: true
|
36
|
+
- selector : meta.link.complex - markup.raw
|
37
|
+
ccontent : |-
|
38
|
+
"<a href='#{children[3].text}'>#{children[1].text}</a>"
|
39
|
+
- selector : markup.bold - markup.raw
|
40
|
+
begin : <b>
|
41
|
+
end : </b>
|
42
|
+
- selector : markup.italic - markup.raw
|
43
|
+
begin : <i>
|
44
|
+
end : </i>
|
45
|
+
- selector : markup.underline - markup.raw
|
46
|
+
begin : <u>
|
47
|
+
end : </u>
|
48
|
+
- selector : markup.raw.verbatim
|
49
|
+
begin : "<code>"
|
50
|
+
end : "</code>"
|
51
|
+
- selector : markup.raw.verbatim.line
|
52
|
+
begin : "<pre>\n"
|
53
|
+
end : "\n</pre>\n"
|
54
|
+
- selector : markup.raw.verbatim.block
|
55
|
+
begin : "<pre>\n"
|
56
|
+
end : "</pre>\n"
|
57
|
+
- selector : markup.quote.line - markup.raw
|
58
|
+
cbegin : |-
|
59
|
+
@@quote_depth ||= []
|
60
|
+
depth = predecessor.text.size
|
61
|
+
if @@quote_depth.empty?
|
62
|
+
@@quote_depth << depth
|
63
|
+
("\t" * depth) + "<blockquote>\n"
|
64
|
+
elsif depth > @@quote_depth.last
|
65
|
+
@@quote_depth << depth
|
66
|
+
"\n" + ("\t" * depth) + "<blockquote>\n"
|
67
|
+
else
|
68
|
+
""
|
69
|
+
end
|
70
|
+
cend : |-
|
71
|
+
next_depth = successor.text.size
|
72
|
+
if ! next_depth || successor.name != predecessor.name
|
73
|
+
result = "\n"
|
74
|
+
while ! @@quote_depth.empty?
|
75
|
+
depth = @@quote_depth.pop
|
76
|
+
result += ("\t" * depth) + "</blockquote>\n"
|
77
|
+
end
|
78
|
+
result
|
79
|
+
elsif next_depth < @@quote_depth.last
|
80
|
+
depth = @@quote_depth.pop
|
81
|
+
"\n" + ("\t" * depth) + "</blockquote>\n"
|
82
|
+
else
|
83
|
+
""
|
84
|
+
end
|
85
|
+
filters :
|
86
|
+
- strip
|
87
|
+
- selector : markup.list.unnumbered - markup.raw
|
88
|
+
cbegin : |-
|
89
|
+
@@list_stack ||= []
|
90
|
+
res = ""
|
91
|
+
depth = predecessor.text.size
|
92
|
+
if @@list_stack.empty?
|
93
|
+
res += (" " * depth) + "<ul>\n"
|
94
|
+
elsif depth > @@list_stack.last
|
95
|
+
res += "\n" + (" " * depth) + "<ul>\n"
|
96
|
+
end
|
97
|
+
@@list_stack << depth
|
98
|
+
res += "\n" + (" " * depth) + "<li>\n"
|
99
|
+
cend : |-
|
100
|
+
depth = predecessor.text.size
|
101
|
+
res = ""
|
102
|
+
if depth < @@list_stack.last
|
103
|
+
res += "\n"
|
104
|
+
while depth < @@list_stack.last
|
105
|
+
res += (" " * @@list_stack.pop) + "</ul>\n"
|
106
|
+
end
|
107
|
+
res
|
108
|
+
end
|
109
|
+
res += "\n" + (" " * depth ) + "</li>\n"
|
110
|
+
if successor.name != predecessor.name
|
111
|
+
res = "\n"
|
112
|
+
while ! @@list_stack.empty?
|
113
|
+
depth = @@list_stack.pop
|
114
|
+
res += (" " * depth) + "</ul>\n"
|
115
|
+
end
|
116
|
+
end
|
117
|
+
res
|
118
|
+
filters :
|
119
|
+
- strip
|
120
|
+
- selector : line.blank
|
121
|
+
invisible: true
|
122
|
+
begin : <line.blank>
|
123
|
+
end : </line.blank>
|
124
|
+
- selector : markup.other.bar.thin - markup.raw
|
125
|
+
begin : <hr noshade size=1>
|
126
|
+
nocontent: true
|
127
|
+
- selector : markup.other.bar.thick - markup.raw
|
128
|
+
begin : <hr noshade size=5>
|
129
|
+
nocontent: true
|
130
|
+
- selector : markup.raw line.blank
|
131
|
+
|
@@ -0,0 +1,140 @@
|
|
1
|
+
---
|
2
|
+
name: Active4D
|
3
|
+
line:
|
4
|
+
begin: ""
|
5
|
+
end: ""
|
6
|
+
tags:
|
7
|
+
- begin: <span class="EmbeddedSource">
|
8
|
+
end: </span>
|
9
|
+
selector: text.html source.active4d
|
10
|
+
- begin: <span class="PlainXmlText">
|
11
|
+
end: </span>
|
12
|
+
selector: text.xml
|
13
|
+
- begin: <span class="LineComment">
|
14
|
+
end: </span>
|
15
|
+
selector: comment.line
|
16
|
+
- begin: <span class="BlockComment">
|
17
|
+
end: </span>
|
18
|
+
selector: comment.block
|
19
|
+
- begin: <span class="String">
|
20
|
+
end: </span>
|
21
|
+
selector: string
|
22
|
+
- begin: <span class="InterpolatedEntity">
|
23
|
+
end: </span>
|
24
|
+
selector: string.interpolated variable
|
25
|
+
- begin: <span class="Number">
|
26
|
+
end: </span>
|
27
|
+
selector: constant.numeric
|
28
|
+
- begin: <span class="UserDefinedConstant">
|
29
|
+
end: </span>
|
30
|
+
selector: constant.character, constant.other
|
31
|
+
- begin: <span class="DateTimeLiteral">
|
32
|
+
end: </span>
|
33
|
+
selector: constant.other.date, constant.other.time
|
34
|
+
- begin: <span class="BuiltInConstant">
|
35
|
+
end: </span>
|
36
|
+
selector: constant.language
|
37
|
+
- begin: <span class="LocalVariable">
|
38
|
+
end: </span>
|
39
|
+
selector: variable.other.local
|
40
|
+
- begin: <span class="Variable">
|
41
|
+
end: </span>
|
42
|
+
selector: variable
|
43
|
+
- begin: <span class="TableField">
|
44
|
+
end: </span>
|
45
|
+
selector: variable.other.table-field
|
46
|
+
- begin: <span class="Keyword">
|
47
|
+
end: </span>
|
48
|
+
selector: keyword
|
49
|
+
- begin: <span class="Operator">
|
50
|
+
end: </span>
|
51
|
+
selector: keyword.operator
|
52
|
+
- begin: <span class="Storage">
|
53
|
+
end: </span>
|
54
|
+
selector: storage
|
55
|
+
- begin: <span class="TypeName">
|
56
|
+
end: </span>
|
57
|
+
selector: entity.name.type
|
58
|
+
- begin: <span class="InheritedClass">
|
59
|
+
end: </span>
|
60
|
+
selector: entity.other.inherited-class
|
61
|
+
- begin: <span class="FunctionName">
|
62
|
+
end: </span>
|
63
|
+
selector: entity.name.function
|
64
|
+
- begin: <span class="FunctionArgument">
|
65
|
+
end: </span>
|
66
|
+
selector: variable.parameter
|
67
|
+
- begin: <span class="TagContainer">
|
68
|
+
end: </span>
|
69
|
+
selector: meta.tag
|
70
|
+
- begin: <span class="TagName">
|
71
|
+
end: </span>
|
72
|
+
selector: entity.name.tag
|
73
|
+
- begin: <span class="TagAttribute">
|
74
|
+
end: </span>
|
75
|
+
selector: entity.other.attribute-name
|
76
|
+
- begin: <span class="CommandMethod">
|
77
|
+
end: </span>
|
78
|
+
selector: support.function
|
79
|
+
- begin: <span class="NamedConstant">
|
80
|
+
end: </span>
|
81
|
+
selector: support.constant
|
82
|
+
- begin: <span class="LibraryClassType">
|
83
|
+
end: </span>
|
84
|
+
selector: support.type, support.class
|
85
|
+
- begin: <span class="LibraryVariable">
|
86
|
+
end: </span>
|
87
|
+
selector: support.variable
|
88
|
+
- begin: <span class="Invalid">
|
89
|
+
end: </span>
|
90
|
+
selector: invalid
|
91
|
+
- begin: <span class="DiffHeader">
|
92
|
+
end: </span>
|
93
|
+
selector: meta.diff
|
94
|
+
- begin: <span class="DiffLineRange">
|
95
|
+
end: </span>
|
96
|
+
selector: meta.diff.range
|
97
|
+
- begin: <span class="DiffDeletedLine">
|
98
|
+
end: </span>
|
99
|
+
selector: markup.deleted.diff
|
100
|
+
- begin: <span class="DiffInsertedLine">
|
101
|
+
end: </span>
|
102
|
+
selector: markup.inserted.diff
|
103
|
+
- begin: <span class="DiffUnchangedLine">
|
104
|
+
end: </span>
|
105
|
+
selector: source.diff
|
106
|
+
listing:
|
107
|
+
begin: <pre class="active4d">
|
108
|
+
end: </pre>
|
109
|
+
document:
|
110
|
+
begin: |
|
111
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
112
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
|
113
|
+
|
114
|
+
<head>
|
115
|
+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
116
|
+
<meta http-equiv="cache-control" content="no-cache" />
|
117
|
+
<meta http-equiv="expires" content="3600" />
|
118
|
+
<meta name="revisit-after" content="2 days" />
|
119
|
+
<meta name="robots" content="index,follow" />
|
120
|
+
<meta name="publisher" content="Dichodaemon" />
|
121
|
+
<meta name="copyright" content="Dichodaemon" />
|
122
|
+
|
123
|
+
<meta name="author" content="Dichodaemon" />
|
124
|
+
<meta name="distribution" content="global" />
|
125
|
+
<meta name="description" content="Ocatarinetabellachithchix" />
|
126
|
+
<meta name="keywords" content="arzaversperia flexilimosos toves" />
|
127
|
+
<link rel="stylesheet" type="text/css" media="screen,projection,print" href="css/active4d.css" />
|
128
|
+
<title>active4d</title>
|
129
|
+
|
130
|
+
</head>
|
131
|
+
|
132
|
+
<body>
|
133
|
+
|
134
|
+
end: " <p>\n <a href=\"http://validator.w3.org/check?uri=referer\">\n <img style=\"border:0\"\n src=\"http://www.w3.org/Icons/valid-xhtml10\"\n alt=\"Valid XHTML 1.0 Strict\" height=\"31\" width=\"88\" />\n </a>\n <a href=\"http://jigsaw.w3.org/css-validator/check?uri=referer\">\n <img style=\"border:0;width:88px;height:31px\"\n src=\"http://jigsaw.w3.org/css-validator/images/vcss\" \n alt=\"Valid CSS!\" />\n </a>\n </p>\n\
|
135
|
+
</body>\n\
|
136
|
+
</html>\n"
|
137
|
+
filter: CGI.escapeHTML( @escaped )
|
138
|
+
line-numbers:
|
139
|
+
begin: <span class="line-numbers">
|
140
|
+
end: </span>
|