code_rippa 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (181) hide show
  1. data/.gitignore +6 -0
  2. data/Gemfile +6 -0
  3. data/LICENSE +22 -0
  4. data/README.md +35 -0
  5. data/Rakefile +2 -0
  6. data/bin/code_rippa +78 -0
  7. data/code_rippa.gemspec +21 -0
  8. data/lib/code_rippa/render/latex/active4d.render +132 -0
  9. data/lib/code_rippa/render/latex/all_hallows_eve.render +96 -0
  10. data/lib/code_rippa/render/latex/amy.render +171 -0
  11. data/lib/code_rippa/render/latex/blackboard.render +111 -0
  12. data/lib/code_rippa/render/latex/brilliance_black.render +552 -0
  13. data/lib/code_rippa/render/latex/brilliance_dull.render +561 -0
  14. data/lib/code_rippa/render/latex/cobalt.render +162 -0
  15. data/lib/code_rippa/render/latex/dawn.render +126 -0
  16. data/lib/code_rippa/render/latex/eiffel.render +132 -0
  17. data/lib/code_rippa/render/latex/espresso_libre.render +123 -0
  18. data/lib/code_rippa/render/latex/idle.render +93 -0
  19. data/lib/code_rippa/render/latex/iplastic.render +99 -0
  20. data/lib/code_rippa/render/latex/lazy.render +96 -0
  21. data/lib/code_rippa/render/latex/mac_classic.render +135 -0
  22. data/lib/code_rippa/render/latex/magicwb_amiga.render +117 -0
  23. data/lib/code_rippa/render/latex/moc.render +186 -0
  24. data/lib/code_rippa/render/latex/pastels_on_dark.render +204 -0
  25. data/lib/code_rippa/render/latex/slush_poppies.render +123 -0
  26. data/lib/code_rippa/render/latex/spacecadet.render +81 -0
  27. data/lib/code_rippa/render/latex/sunburst.render +186 -0
  28. data/lib/code_rippa/render/latex/twilight.render +153 -0
  29. data/lib/code_rippa/render/latex/zenburnesque.render +126 -0
  30. data/lib/code_rippa/syntax/actionscript.syntax +97 -0
  31. data/lib/code_rippa/syntax/active4d.syntax +276 -0
  32. data/lib/code_rippa/syntax/active4d_html.syntax +311 -0
  33. data/lib/code_rippa/syntax/active4d_ini.syntax +50 -0
  34. data/lib/code_rippa/syntax/active4d_library.syntax +21 -0
  35. data/lib/code_rippa/syntax/ada.syntax +33 -0
  36. data/lib/code_rippa/syntax/antlr.syntax +151 -0
  37. data/lib/code_rippa/syntax/apache.syntax +191 -0
  38. data/lib/code_rippa/syntax/applescript.syntax +384 -0
  39. data/lib/code_rippa/syntax/asp.syntax +70 -0
  40. data/lib/code_rippa/syntax/asp_vb.net.syntax +129 -0
  41. data/lib/code_rippa/syntax/bibtex.syntax +151 -0
  42. data/lib/code_rippa/syntax/blog_html.syntax +41 -0
  43. data/lib/code_rippa/syntax/blog_markdown.syntax +42 -0
  44. data/lib/code_rippa/syntax/blog_text.syntax +27 -0
  45. data/lib/code_rippa/syntax/blog_textile.syntax +27 -0
  46. data/lib/code_rippa/syntax/build.syntax +53 -0
  47. data/lib/code_rippa/syntax/bulletin_board.syntax +287 -0
  48. data/lib/code_rippa/syntax/cake.syntax +55 -0
  49. data/lib/code_rippa/syntax/camlp4.syntax +36 -0
  50. data/lib/code_rippa/syntax/cm.syntax +32 -0
  51. data/lib/code_rippa/syntax/coldfusion.syntax +119 -0
  52. data/lib/code_rippa/syntax/context_free.syntax +176 -0
  53. data/lib/code_rippa/syntax/cs.syntax +59 -0
  54. data/lib/code_rippa/syntax/css.syntax +195 -0
  55. data/lib/code_rippa/syntax/css_experimental.syntax +1925 -0
  56. data/lib/code_rippa/syntax/csv.syntax +68 -0
  57. data/lib/code_rippa/syntax/d.syntax +142 -0
  58. data/lib/code_rippa/syntax/diff.syntax +81 -0
  59. data/lib/code_rippa/syntax/dokuwiki.syntax +204 -0
  60. data/lib/code_rippa/syntax/dot.syntax +47 -0
  61. data/lib/code_rippa/syntax/doxygen.syntax +43 -0
  62. data/lib/code_rippa/syntax/dylan.syntax +62 -0
  63. data/lib/code_rippa/syntax/eiffel.syntax +78 -0
  64. data/lib/code_rippa/syntax/erlang.syntax +922 -0
  65. data/lib/code_rippa/syntax/f-script.syntax +80 -0
  66. data/lib/code_rippa/syntax/fortran.syntax +141 -0
  67. data/lib/code_rippa/syntax/fxscript.syntax +142 -0
  68. data/lib/code_rippa/syntax/greasemonkey.syntax +34 -0
  69. data/lib/code_rippa/syntax/gri.syntax +83 -0
  70. data/lib/code_rippa/syntax/groovy.syntax +191 -0
  71. data/lib/code_rippa/syntax/gtd.syntax +22 -0
  72. data/lib/code_rippa/syntax/gtdalt.syntax +143 -0
  73. data/lib/code_rippa/syntax/haml.syntax +88 -0
  74. data/lib/code_rippa/syntax/haskell.syntax +88 -0
  75. data/lib/code_rippa/syntax/html-asp.syntax +27 -0
  76. data/lib/code_rippa/syntax/html.syntax +362 -0
  77. data/lib/code_rippa/syntax/html_django.syntax +36 -0
  78. data/lib/code_rippa/syntax/html_for_asp.net.syntax +424 -0
  79. data/lib/code_rippa/syntax/html_mason.syntax +119 -0
  80. data/lib/code_rippa/syntax/html_rails.syntax +40 -0
  81. data/lib/code_rippa/syntax/html_tcl.syntax +26 -0
  82. data/lib/code_rippa/syntax/icalendar.syntax +32 -0
  83. data/lib/code_rippa/syntax/inform.syntax +48 -0
  84. data/lib/code_rippa/syntax/ini.syntax +55 -0
  85. data/lib/code_rippa/syntax/installer_distribution_script.syntax +77 -0
  86. data/lib/code_rippa/syntax/io.syntax +81 -0
  87. data/lib/code_rippa/syntax/java.syntax +211 -0
  88. data/lib/code_rippa/syntax/javaproperties.syntax +20 -0
  89. data/lib/code_rippa/syntax/javascript.syntax +256 -0
  90. data/lib/code_rippa/syntax/javascript_+_prototype.syntax +72 -0
  91. data/lib/code_rippa/syntax/javascript_+_prototype_bracketed.syntax +140 -0
  92. data/lib/code_rippa/syntax/jquery_javascript.syntax +114 -0
  93. data/lib/code_rippa/syntax/json.syntax +136 -0
  94. data/lib/code_rippa/syntax/languagedefinition.syntax +708 -0
  95. data/lib/code_rippa/syntax/latex.syntax +566 -0
  96. data/lib/code_rippa/syntax/latex_beamer.syntax +41 -0
  97. data/lib/code_rippa/syntax/latex_log.syntax +50 -0
  98. data/lib/code_rippa/syntax/latex_memoir.syntax +64 -0
  99. data/lib/code_rippa/syntax/lexflex.syntax +219 -0
  100. data/lib/code_rippa/syntax/lighttpd.syntax +54 -0
  101. data/lib/code_rippa/syntax/lilypond.syntax +492 -0
  102. data/lib/code_rippa/syntax/lisp.syntax +61 -0
  103. data/lib/code_rippa/syntax/literate_haskell.syntax +24 -0
  104. data/lib/code_rippa/syntax/logo.syntax +29 -0
  105. data/lib/code_rippa/syntax/logtalk.syntax +152 -0
  106. data/lib/code_rippa/syntax/lua.syntax +86 -0
  107. data/lib/code_rippa/syntax/m.syntax +142 -0
  108. data/lib/code_rippa/syntax/macports_portfile.syntax +163 -0
  109. data/lib/code_rippa/syntax/makefile.syntax +36 -0
  110. data/lib/code_rippa/syntax/man.syntax +17 -0
  111. data/lib/code_rippa/syntax/mediawiki.syntax +567 -0
  112. data/lib/code_rippa/syntax/mips.syntax +66 -0
  113. data/lib/code_rippa/syntax/mod_perl.syntax +50 -0
  114. data/lib/code_rippa/syntax/modula-3.syntax +47 -0
  115. data/lib/code_rippa/syntax/moinmoin.syntax +189 -0
  116. data/lib/code_rippa/syntax/mootools.syntax +572 -0
  117. data/lib/code_rippa/syntax/movable_type.syntax +162 -0
  118. data/lib/code_rippa/syntax/multimarkdown.syntax +39 -0
  119. data/lib/code_rippa/syntax/objective-c++.syntax +18 -0
  120. data/lib/code_rippa/syntax/objective-c.syntax +233 -0
  121. data/lib/code_rippa/syntax/ocaml.syntax +764 -0
  122. data/lib/code_rippa/syntax/ocamllex.syntax +167 -0
  123. data/lib/code_rippa/syntax/ocamlyacc.syntax +184 -0
  124. data/lib/code_rippa/syntax/opengl.syntax +14 -0
  125. data/lib/code_rippa/syntax/pascal.syntax +77 -0
  126. data/lib/code_rippa/syntax/perl.syntax +1115 -0
  127. data/lib/code_rippa/syntax/plain_text.syntax +32 -0
  128. data/lib/code_rippa/syntax/postscript.syntax +114 -0
  129. data/lib/code_rippa/syntax/processing.syntax +106 -0
  130. data/lib/code_rippa/syntax/prolog.syntax +40 -0
  131. data/lib/code_rippa/syntax/property_list.syntax +635 -0
  132. data/lib/code_rippa/syntax/python.syntax +868 -0
  133. data/lib/code_rippa/syntax/python_django.syntax +21 -0
  134. data/lib/code_rippa/syntax/qmake_project.syntax +114 -0
  135. data/lib/code_rippa/syntax/qt_c++.syntax +26 -0
  136. data/lib/code_rippa/syntax/quake3_config.syntax +32 -0
  137. data/lib/code_rippa/syntax/r.syntax +81 -0
  138. data/lib/code_rippa/syntax/r_console.syntax +16 -0
  139. data/lib/code_rippa/syntax/ragel.syntax +201 -0
  140. data/lib/code_rippa/syntax/rd_r_documentation.syntax +91 -0
  141. data/lib/code_rippa/syntax/regexp.syntax +50 -0
  142. data/lib/code_rippa/syntax/release_notes.syntax +46 -0
  143. data/lib/code_rippa/syntax/remind.syntax +253 -0
  144. data/lib/code_rippa/syntax/restructuredtext.syntax +250 -0
  145. data/lib/code_rippa/syntax/rez.syntax +80 -0
  146. data/lib/code_rippa/syntax/ruby.syntax +1035 -0
  147. data/lib/code_rippa/syntax/ruby_experimental.syntax +145 -0
  148. data/lib/code_rippa/syntax/ruby_on_rails.syntax +88 -0
  149. data/lib/code_rippa/syntax/s5.syntax +69 -0
  150. data/lib/code_rippa/syntax/scheme.syntax +347 -0
  151. data/lib/code_rippa/syntax/scilab.syntax +41 -0
  152. data/lib/code_rippa/syntax/setext.syntax +147 -0
  153. data/lib/code_rippa/syntax/shell-unix-generic.syntax +384 -0
  154. data/lib/code_rippa/syntax/slate.syntax +149 -0
  155. data/lib/code_rippa/syntax/sql.syntax +237 -0
  156. data/lib/code_rippa/syntax/sql_rails.syntax +18 -0
  157. data/lib/code_rippa/syntax/ssh-config.syntax +33 -0
  158. data/lib/code_rippa/syntax/standard_ml.syntax +121 -0
  159. data/lib/code_rippa/syntax/strings_file.syntax +39 -0
  160. data/lib/code_rippa/syntax/subversion_commit_message.syntax +36 -0
  161. data/lib/code_rippa/syntax/sweave.syntax +84 -0
  162. data/lib/code_rippa/syntax/swig.syntax +57 -0
  163. data/lib/code_rippa/syntax/tcl.syntax +152 -0
  164. data/lib/code_rippa/syntax/template_toolkit.syntax +121 -0
  165. data/lib/code_rippa/syntax/tex.syntax +86 -0
  166. data/lib/code_rippa/syntax/tex_math.syntax +49 -0
  167. data/lib/code_rippa/syntax/textile.syntax +215 -0
  168. data/lib/code_rippa/syntax/tsv.syntax +50 -0
  169. data/lib/code_rippa/syntax/twiki.syntax +241 -0
  170. data/lib/code_rippa/syntax/txt2tags.syntax +79 -0
  171. data/lib/code_rippa/syntax/vectorscript.syntax +57 -0
  172. data/lib/code_rippa/syntax/xhtml_1.0.syntax +4027 -0
  173. data/lib/code_rippa/syntax/xml.syntax +180 -0
  174. data/lib/code_rippa/syntax/xml_strict.syntax +92 -0
  175. data/lib/code_rippa/syntax/xsl.syntax +60 -0
  176. data/lib/code_rippa/syntax/yaml.syntax +160 -0
  177. data/lib/code_rippa/syntax/yui_javascript.syntax +176 -0
  178. data/lib/code_rippa/uv_overrides.rb +49 -0
  179. data/lib/code_rippa/version.rb +3 -0
  180. data/lib/code_rippa.rb +204 -0
  181. metadata +245 -0
data/.gitignore ADDED
@@ -0,0 +1,6 @@
1
+ .bundle
2
+ db/*.sqlite3
3
+ log/*.log
4
+ tmp/
5
+ .sass-cache/
6
+ .DS_Store
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in code_rippa.gemspec
4
+ gemspec
5
+
6
+ gem "linguist", :git => "https://github.com/github/linguist.git"
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Benjamin Tan Wei Hao
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,35 @@
1
+ # CodeRippa
2
+
3
+ CodeRippa takes your source code and turns it into a beautiful PDF file.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'code_rippa'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install code_rippa
18
+
19
+ ## Usage
20
+
21
+ $ Usage: code_rippa [options] file_or_directory
22
+ $ -l, --list-themes List all available themes
23
+ $ -t, --theme THEME Selected theme
24
+ $ -n, --list-syntax List all available syntax
25
+ $ -s, --syntax SYNTAX Selected syntax
26
+ $ -x, --excluded-exts E1,E2,EN Exclude these extensions when processing
27
+ $ -h, --help Display this screen
28
+
29
+ ## Contributing
30
+
31
+ 1. Fork it
32
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
33
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
34
+ 4. Push to the branch (`git push origin my-new-feature`)
35
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
data/bin/code_rippa ADDED
@@ -0,0 +1,78 @@
1
+ #! /usr/bin/env ruby
2
+ begin
3
+ require 'optparse'
4
+ require 'code_rippa'
5
+ rescue LoadError
6
+ $:.unshift File.join(File.dirname(__FILE__), '..', 'lib', )
7
+ require 'code_rippa'
8
+ end
9
+
10
+ options = {}
11
+ option_parser = OptionParser.new do |opts|
12
+
13
+ opts.banner = CodeRippa.usage
14
+
15
+ opts.on('-l', '--list-themes', 'List all available themes') do
16
+ puts Uv.themes.join("\n")
17
+ exit
18
+ end
19
+
20
+ opts.on('-t', '--theme THEME', 'Selected theme') do |theme|
21
+ if Uv.themes.include? theme
22
+ options[:theme] = theme
23
+ else
24
+ raise ArgumentError, "#{theme} theme not found. Use -l to see the list of available themes."
25
+ end
26
+ end
27
+
28
+ opts.on('-n', '--list-syntax', 'List all available syntax') do
29
+ puts CodeRippa.supported_syntax.join("\n")
30
+ exit
31
+ end
32
+
33
+ opts.on('-s', '--syntax SYNTAX', 'Selected syntax') do |syntax|
34
+ if CodeRippa.supported_syntax.include? syntax
35
+ options[:syntax] = syntax
36
+ else
37
+ raise ArgumentError, "syntax for #{syntax} not found. Use -s to see the list of available syntax."
38
+ end
39
+ end
40
+
41
+ # No need to check if its a correct extension.
42
+ options[:excluded_exts] = []
43
+ opts.on('-x', '--excluded-exts E1,E2,EN', Array, 'Exclude these extensions when processing') do |exts|
44
+
45
+ options[:excluded_exts] = exts.sort!
46
+ valid_exts = exts & CodeRippa.supported_exts
47
+
48
+ if valid_exts != exts
49
+ invalid_exts = exts - valid_exts
50
+ raise ArgumentError, "These extensions are not supported: #{invalid_exts.join(" ")}. Aborting."
51
+ else
52
+ options[:ex_extensions] = valid_exts
53
+ end
54
+ end
55
+
56
+ opts.on('-h', '--help', 'Display this screen') do
57
+ puts opts
58
+ exit
59
+ end
60
+ end
61
+
62
+ begin
63
+ option_parser.parse!
64
+
65
+ if options[:theme] and options[:syntax] and ARGV.size == 1
66
+ if FileTest.file?(ARGV[0])
67
+ CodeRippa.rip_file(ARGV[0], options[:theme], options[:syntax], options[:excluded_exts])
68
+ elsif FileTest.directory?(ARGV[0])
69
+ CodeRippa.rip_dir(ARGV[0], options[:theme], options[:syntax], options[:excluded_exts])
70
+ end
71
+ else
72
+ raise ArgumentError, "Missing arguments. Aborting.\n" + CodeRippa.usage
73
+ end
74
+
75
+ rescue ArgumentError => e
76
+ puts e
77
+ exit
78
+ end
@@ -0,0 +1,21 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/code_rippa/version', __FILE__)
3
+ require File.expand_path('../lib/code_rippa/uv_overrides', __FILE__)
4
+
5
+ Gem::Specification.new do |gem|
6
+ gem.authors = ["Benjamin Tan Wei Hao"]
7
+ gem.email = ["ben@witsvale.com"]
8
+ gem.platform = Gem::Platform::RUBY
9
+ gem.description = %q{Converts source code into a (bookmarked, themed, and syntax highlighted!) PDF.}
10
+ gem.summary = %q{Converts source code into a (bookmarked, themed, and syntax highlighted!) PDF. Supports 150 languages and Textmate themes. }
11
+ gem.homepage = "http://code-rippa.heroku.com"
12
+ gem.has_rdoc = false
13
+ gem.files = `git ls-files`.split($\)
14
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
15
+ # gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
16
+ gem.name = "code_rippa"
17
+ gem.require_paths = ["lib"]
18
+ gem.version = CodeRippa::VERSION
19
+ gem.required_ruby_version = '>= 1.9.0'
20
+ gem.add_dependency "spox-ultraviolet", "~> 0.10.5"
21
+ end
@@ -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{"