kitabu 0.4.7 → 1.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (544) hide show
  1. data/.gitignore +3 -0
  2. data/.gitmodules +3 -0
  3. data/.rspec +1 -0
  4. data/Gemfile +2 -0
  5. data/Gemfile.lock +62 -0
  6. data/README.rdoc +187 -0
  7. data/Rakefile +4 -36
  8. data/bin/kitabu +2 -5
  9. data/examples/RailsGuides/config/helper.rb +29 -0
  10. data/examples/RailsGuides/config/kitabu.yml +48 -0
  11. data/examples/RailsGuides/images/challenge.png +0 -0
  12. data/examples/RailsGuides/images/posts_index.png +0 -0
  13. data/examples/RailsGuides/images/rails_welcome.png +0 -0
  14. data/examples/RailsGuides/output/RailsGuides.epub +0 -0
  15. data/examples/RailsGuides/output/RailsGuides.html +1556 -0
  16. data/examples/RailsGuides/output/RailsGuides.pdf +4930 -7
  17. data/examples/RailsGuides/templates/cover.erb +16 -0
  18. data/examples/RailsGuides/templates/layout.css +352 -0
  19. data/examples/RailsGuides/templates/layout.erb +43 -0
  20. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/idle.css → examples/RailsGuides/templates/syntax.css} +0 -0
  21. data/examples/RailsGuides/templates/user.css +19 -0
  22. data/examples/RailsGuides/text/01_Guide_Assumptions.mkdn +13 -0
  23. data/examples/RailsGuides/text/02_What_is_Rails.mkdn +106 -0
  24. data/examples/RailsGuides/text/03_Creating_a_new_Rails_project.mkdn +200 -0
  25. data/examples/RailsGuides/text/04_Hello_Rails.mkdn +62 -0
  26. data/examples/RailsGuides/text/05_Getting_Up_and_Running_Quickly_with_Scaffolding.mkdn +4 -0
  27. data/examples/RailsGuides/text/06_Creating_a_resource.mkdn +503 -0
  28. data/examples/RailsGuides/text/07_Adding_a_second_model.mkdn +232 -0
  29. data/examples/RailsGuides/text/08_Refactoring.mkdn +123 -0
  30. data/examples/RailsGuides/text/09_Deleting_comments.mkdn +57 -0
  31. data/examples/RailsGuides/text/09_Security.mkdn +56 -0
  32. data/examples/RailsGuides/text/10_Building_a_multi_model_form.mkdn +130 -0
  33. data/examples/RailsGuides/text/11_View_helpers.mkdn +50 -0
  34. data/examples/RailsGuides/text/12_Whats_next.mkdn +14 -0
  35. data/examples/RailsGuides/text/13_Configuration_gotchas.mkdn +10 -0
  36. data/kitabu.gemspec +28 -491
  37. data/lib/kitabu.rb +54 -46
  38. data/lib/kitabu/cli.rb +88 -0
  39. data/lib/kitabu/errors.rb +3 -0
  40. data/lib/kitabu/exporter.rb +81 -0
  41. data/lib/kitabu/extensions/redcloth.rb +65 -0
  42. data/lib/kitabu/extensions/string.rb +11 -0
  43. data/lib/kitabu/generator.rb +74 -0
  44. data/lib/kitabu/parser.rb +34 -0
  45. data/lib/kitabu/parser/epub.rb +131 -0
  46. data/lib/kitabu/parser/html.rb +174 -0
  47. data/lib/kitabu/parser/mobi.rb +17 -0
  48. data/lib/kitabu/parser/pdf.rb +41 -0
  49. data/lib/kitabu/parser/txt.rb +22 -0
  50. data/lib/kitabu/stream.rb +27 -0
  51. data/lib/kitabu/syntax.rb +109 -107
  52. data/lib/kitabu/toc.rb +62 -33
  53. data/lib/kitabu/version.rb +8 -0
  54. data/spec/kitabu/cli/export_spec.rb +17 -0
  55. data/spec/kitabu/cli/new_spec.rb +21 -0
  56. data/spec/kitabu/cli/permalinks_spec.rb +12 -0
  57. data/spec/kitabu/cli/version_spec.rb +12 -0
  58. data/spec/kitabu/extensions/redcloth_spec.rb +52 -0
  59. data/spec/kitabu/extensions/string_spec.rb +21 -0
  60. data/spec/kitabu/generator_spec.rb +10 -0
  61. data/spec/kitabu/parser/epub_spec.rb +10 -0
  62. data/spec/kitabu/parser/html_spec.rb +75 -0
  63. data/spec/kitabu/parser/pdf_spec.rb +14 -0
  64. data/spec/kitabu/syntax_spec.rb +80 -76
  65. data/spec/kitabu/toc_spec.rb +42 -68
  66. data/spec/kitabu_spec.rb +4 -0
  67. data/spec/spec_helper.rb +20 -24
  68. data/spec/support/exit_with_code.rb +26 -0
  69. data/spec/support/have_tag.rb +115 -0
  70. data/spec/support/helper.rb +18 -0
  71. data/spec/support/mybook/.gitignore +1 -0
  72. data/spec/support/mybook/code/.gitkeep +0 -0
  73. data/spec/support/mybook/code/code.rb +13 -0
  74. data/spec/support/mybook/config/helper.rb +29 -0
  75. data/spec/support/mybook/config/kitabu.yml +59 -0
  76. data/spec/support/mybook/images/.gitkeep +0 -0
  77. data/spec/support/mybook/images/logo.gif +0 -0
  78. data/spec/support/mybook/output/.gitkeep +0 -0
  79. data/spec/support/mybook/templates/cover.erb +16 -0
  80. data/spec/support/mybook/templates/epub.css +1 -0
  81. data/spec/support/mybook/templates/epub.erb +15 -0
  82. data/spec/support/mybook/templates/layout.css +137 -0
  83. data/{templates/layouts/boom/layout.html → spec/support/mybook/templates/layout.erb} +26 -17
  84. data/{templates/themes/mac_classic.css → spec/support/mybook/templates/syntax.css} +63 -0
  85. data/spec/support/mybook/templates/user.css +1 -0
  86. data/spec/support/mybook/text/.gitkeep +0 -0
  87. data/spec/support/mybook/text/01_Markdown_Chapter.markdown +8 -0
  88. data/spec/support/mybook/text/02_Textile_Chapter.textile +3 -0
  89. data/spec/support/mybook/text/03_HTML_Chapter.html +3 -0
  90. data/spec/support/mybook/text/04_With_Directory/Some_Chapter.mkdn +3 -0
  91. data/spec/support/mybook/text/CHANGELOG.textile +6 -0
  92. data/spec/support/mybook/text/TOC.textile +0 -0
  93. data/spec/support/mybook/text/_00_Introduction.markdown +3 -0
  94. data/spec/support/shared.rb +16 -0
  95. data/templates/config.erb +48 -0
  96. data/templates/cover.erb +16 -0
  97. data/templates/ebook.png +0 -0
  98. data/templates/epub.css +0 -0
  99. data/templates/epub.erb +15 -0
  100. data/templates/helper.rb +29 -0
  101. data/templates/layout.css +353 -0
  102. data/templates/layout.erb +44 -0
  103. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/active4d.css +0 -0
  104. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/all_hallows_eve.css +0 -0
  105. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/amy.css +0 -0
  106. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/blackboard.css +0 -0
  107. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/brilliance_black.css +0 -0
  108. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/brilliance_dull.css +0 -0
  109. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/cobalt.css +0 -0
  110. data/{lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css → templates/styles}/dawn.css +0 -0
  111. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/eiffel.css +0 -0
  112. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/espresso_libre.css +0 -0
  113. data/{lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css → templates/styles}/idle.css +0 -0
  114. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/iplastic.css +0 -0
  115. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/lazy.css +0 -0
  116. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/mac_classic.css +0 -0
  117. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/magicwb_amiga.css +0 -0
  118. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/pastels_on_dark.css +0 -0
  119. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/slush_poppies.css +0 -0
  120. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/spacecadet.css +0 -0
  121. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/sunburst.css +0 -0
  122. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/twilight.css +0 -0
  123. data/{lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css → templates/styles}/zenburnesque.css +0 -0
  124. data/templates/user.css +1 -1
  125. metadata +395 -501
  126. data/README.markdown +0 -60
  127. data/VERSION +0 -1
  128. data/lib/kitabu/base.rb +0 -271
  129. data/lib/kitabu/blackcloth.rb +0 -184
  130. data/lib/kitabu/command.rb +0 -94
  131. data/lib/kitabu/redcloth.rb +0 -964
  132. data/lib/kitabu/tasks.rb +0 -113
  133. data/lib/kitabu/templates.rb +0 -54
  134. data/lib/kitabu/vendor/colorize/colorize.rb +0 -81
  135. data/lib/kitabu/vendor/ruby1.8/plist/plist.rb +0 -22
  136. data/lib/kitabu/vendor/ruby1.8/plist/plist/generator.rb +0 -224
  137. data/lib/kitabu/vendor/ruby1.8/plist/plist/parser.rb +0 -224
  138. data/lib/kitabu/vendor/ruby1.8/textpow/textpow.rb +0 -10
  139. data/lib/kitabu/vendor/ruby1.8/textpow/textpow/debug_processor.rb +0 -36
  140. data/lib/kitabu/vendor/ruby1.8/textpow/textpow/score_manager.rb +0 -65
  141. data/lib/kitabu/vendor/ruby1.8/textpow/textpow/syntax.rb +0 -284
  142. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/active4d.render +0 -140
  143. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/all_hallows_eve.render +0 -104
  144. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/amy.render +0 -179
  145. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/blackboard.render +0 -119
  146. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/brilliance_black.render +0 -560
  147. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/brilliance_dull.render +0 -569
  148. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/cobalt.render +0 -170
  149. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/dawn.render +0 -134
  150. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/eiffel.render +0 -140
  151. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/espresso_libre.render +0 -131
  152. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/dawn.css +0 -121
  153. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/idle.render +0 -101
  154. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/iplastic.render +0 -107
  155. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/lazy.render +0 -104
  156. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/mac_classic.render +0 -143
  157. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/magicwb_amiga.render +0 -125
  158. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/pastels_on_dark.render +0 -212
  159. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/slush_poppies.render +0 -131
  160. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/spacecadet.render +0 -89
  161. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/sunburst.render +0 -194
  162. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/twilight.render +0 -161
  163. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/zenburnesque.render +0 -134
  164. data/lib/kitabu/vendor/ruby1.8/uv/syntax/actionscript.syntax +0 -97
  165. data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d.syntax +0 -276
  166. data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d_html.syntax +0 -311
  167. data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d_ini.syntax +0 -50
  168. data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d_library.syntax +0 -21
  169. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ada.syntax +0 -33
  170. data/lib/kitabu/vendor/ruby1.8/uv/syntax/antlr.syntax +0 -151
  171. data/lib/kitabu/vendor/ruby1.8/uv/syntax/apache.syntax +0 -191
  172. data/lib/kitabu/vendor/ruby1.8/uv/syntax/applescript.syntax +0 -384
  173. data/lib/kitabu/vendor/ruby1.8/uv/syntax/asp.syntax +0 -70
  174. data/lib/kitabu/vendor/ruby1.8/uv/syntax/asp_vb.net.syntax +0 -129
  175. data/lib/kitabu/vendor/ruby1.8/uv/syntax/bibtex.syntax +0 -151
  176. data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_html.syntax +0 -41
  177. data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_markdown.syntax +0 -42
  178. data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_text.syntax +0 -27
  179. data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_textile.syntax +0 -27
  180. data/lib/kitabu/vendor/ruby1.8/uv/syntax/buggy/nemerle.syntax +0 -74
  181. data/lib/kitabu/vendor/ruby1.8/uv/syntax/build.syntax +0 -53
  182. data/lib/kitabu/vendor/ruby1.8/uv/syntax/bulletin_board.syntax +0 -287
  183. data/lib/kitabu/vendor/ruby1.8/uv/syntax/c++.syntax +0 -109
  184. data/lib/kitabu/vendor/ruby1.8/uv/syntax/c.syntax +0 -326
  185. data/lib/kitabu/vendor/ruby1.8/uv/syntax/cake.syntax +0 -55
  186. data/lib/kitabu/vendor/ruby1.8/uv/syntax/camlp4.syntax +0 -36
  187. data/lib/kitabu/vendor/ruby1.8/uv/syntax/cm.syntax +0 -32
  188. data/lib/kitabu/vendor/ruby1.8/uv/syntax/coldfusion.syntax +0 -119
  189. data/lib/kitabu/vendor/ruby1.8/uv/syntax/context_free.syntax +0 -176
  190. data/lib/kitabu/vendor/ruby1.8/uv/syntax/cs.syntax +0 -59
  191. data/lib/kitabu/vendor/ruby1.8/uv/syntax/css.syntax +0 -195
  192. data/lib/kitabu/vendor/ruby1.8/uv/syntax/css_experimental.syntax +0 -1925
  193. data/lib/kitabu/vendor/ruby1.8/uv/syntax/csv.syntax +0 -68
  194. data/lib/kitabu/vendor/ruby1.8/uv/syntax/d.syntax +0 -142
  195. data/lib/kitabu/vendor/ruby1.8/uv/syntax/diff.syntax +0 -81
  196. data/lib/kitabu/vendor/ruby1.8/uv/syntax/dokuwiki.syntax +0 -204
  197. data/lib/kitabu/vendor/ruby1.8/uv/syntax/dot.syntax +0 -47
  198. data/lib/kitabu/vendor/ruby1.8/uv/syntax/doxygen.syntax +0 -43
  199. data/lib/kitabu/vendor/ruby1.8/uv/syntax/dylan.syntax +0 -62
  200. data/lib/kitabu/vendor/ruby1.8/uv/syntax/eiffel.syntax +0 -78
  201. data/lib/kitabu/vendor/ruby1.8/uv/syntax/erlang.syntax +0 -922
  202. data/lib/kitabu/vendor/ruby1.8/uv/syntax/f-script.syntax +0 -80
  203. data/lib/kitabu/vendor/ruby1.8/uv/syntax/fortran.syntax +0 -141
  204. data/lib/kitabu/vendor/ruby1.8/uv/syntax/fxscript.syntax +0 -142
  205. data/lib/kitabu/vendor/ruby1.8/uv/syntax/greasemonkey.syntax +0 -34
  206. data/lib/kitabu/vendor/ruby1.8/uv/syntax/gri.syntax +0 -83
  207. data/lib/kitabu/vendor/ruby1.8/uv/syntax/groovy.syntax +0 -191
  208. data/lib/kitabu/vendor/ruby1.8/uv/syntax/gtd.syntax +0 -22
  209. data/lib/kitabu/vendor/ruby1.8/uv/syntax/gtdalt.syntax +0 -143
  210. data/lib/kitabu/vendor/ruby1.8/uv/syntax/haml.syntax +0 -88
  211. data/lib/kitabu/vendor/ruby1.8/uv/syntax/haskell.syntax +0 -88
  212. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html-asp.syntax +0 -27
  213. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html.syntax +0 -362
  214. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_django.syntax +0 -36
  215. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_for_asp.net.syntax +0 -424
  216. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_mason.syntax +0 -119
  217. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_rails.syntax +0 -40
  218. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_tcl.syntax +0 -26
  219. data/lib/kitabu/vendor/ruby1.8/uv/syntax/icalendar.syntax +0 -32
  220. data/lib/kitabu/vendor/ruby1.8/uv/syntax/inform.syntax +0 -48
  221. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ini.syntax +0 -55
  222. data/lib/kitabu/vendor/ruby1.8/uv/syntax/installer_distribution_script.syntax +0 -77
  223. data/lib/kitabu/vendor/ruby1.8/uv/syntax/io.syntax +0 -81
  224. data/lib/kitabu/vendor/ruby1.8/uv/syntax/java.syntax +0 -211
  225. data/lib/kitabu/vendor/ruby1.8/uv/syntax/javaproperties.syntax +0 -20
  226. data/lib/kitabu/vendor/ruby1.8/uv/syntax/javascript.syntax +0 -256
  227. data/lib/kitabu/vendor/ruby1.8/uv/syntax/javascript_+_prototype.syntax +0 -72
  228. data/lib/kitabu/vendor/ruby1.8/uv/syntax/javascript_+_prototype_bracketed.syntax +0 -140
  229. data/lib/kitabu/vendor/ruby1.8/uv/syntax/jquery_javascript.syntax +0 -114
  230. data/lib/kitabu/vendor/ruby1.8/uv/syntax/json.syntax +0 -136
  231. data/lib/kitabu/vendor/ruby1.8/uv/syntax/languagedefinition.syntax +0 -708
  232. data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex.syntax +0 -566
  233. data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex_beamer.syntax +0 -41
  234. data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex_log.syntax +0 -50
  235. data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex_memoir.syntax +0 -64
  236. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lexflex.syntax +0 -219
  237. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lighttpd.syntax +0 -54
  238. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lilypond.syntax +0 -492
  239. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lisp.syntax +0 -61
  240. data/lib/kitabu/vendor/ruby1.8/uv/syntax/literate_haskell.syntax +0 -24
  241. data/lib/kitabu/vendor/ruby1.8/uv/syntax/logo.syntax +0 -29
  242. data/lib/kitabu/vendor/ruby1.8/uv/syntax/logtalk.syntax +0 -152
  243. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lua.syntax +0 -86
  244. data/lib/kitabu/vendor/ruby1.8/uv/syntax/m.syntax +0 -142
  245. data/lib/kitabu/vendor/ruby1.8/uv/syntax/macports_portfile.syntax +0 -163
  246. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mail.syntax +0 -118
  247. data/lib/kitabu/vendor/ruby1.8/uv/syntax/makefile.syntax +0 -36
  248. data/lib/kitabu/vendor/ruby1.8/uv/syntax/man.syntax +0 -17
  249. data/lib/kitabu/vendor/ruby1.8/uv/syntax/markdown.syntax +0 -543
  250. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mediawiki.syntax +0 -567
  251. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mel.syntax +0 -92
  252. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mips.syntax +0 -66
  253. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mod_perl.syntax +0 -50
  254. data/lib/kitabu/vendor/ruby1.8/uv/syntax/modula-3.syntax +0 -47
  255. data/lib/kitabu/vendor/ruby1.8/uv/syntax/moinmoin.syntax +0 -189
  256. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mootools.syntax +0 -572
  257. data/lib/kitabu/vendor/ruby1.8/uv/syntax/movable_type.syntax +0 -162
  258. data/lib/kitabu/vendor/ruby1.8/uv/syntax/multimarkdown.syntax +0 -39
  259. data/lib/kitabu/vendor/ruby1.8/uv/syntax/objective-c++.syntax +0 -18
  260. data/lib/kitabu/vendor/ruby1.8/uv/syntax/objective-c.syntax +0 -233
  261. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ocaml.syntax +0 -764
  262. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ocamllex.syntax +0 -167
  263. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ocamlyacc.syntax +0 -184
  264. data/lib/kitabu/vendor/ruby1.8/uv/syntax/old/YAML.yaml +0 -160
  265. data/lib/kitabu/vendor/ruby1.8/uv/syntax/old/txt2tags.yaml +0 -139
  266. data/lib/kitabu/vendor/ruby1.8/uv/syntax/opengl.syntax +0 -14
  267. data/lib/kitabu/vendor/ruby1.8/uv/syntax/pascal.syntax +0 -77
  268. data/lib/kitabu/vendor/ruby1.8/uv/syntax/perl.syntax +0 -1115
  269. data/lib/kitabu/vendor/ruby1.8/uv/syntax/php.syntax +0 -1253
  270. data/lib/kitabu/vendor/ruby1.8/uv/syntax/plain_text.syntax +0 -32
  271. data/lib/kitabu/vendor/ruby1.8/uv/syntax/pmwiki.syntax +0 -113
  272. data/lib/kitabu/vendor/ruby1.8/uv/syntax/postscript.syntax +0 -114
  273. data/lib/kitabu/vendor/ruby1.8/uv/syntax/processing.syntax +0 -106
  274. data/lib/kitabu/vendor/ruby1.8/uv/syntax/prolog.syntax +0 -40
  275. data/lib/kitabu/vendor/ruby1.8/uv/syntax/property_list.syntax +0 -635
  276. data/lib/kitabu/vendor/ruby1.8/uv/syntax/python.syntax +0 -868
  277. data/lib/kitabu/vendor/ruby1.8/uv/syntax/python_django.syntax +0 -21
  278. data/lib/kitabu/vendor/ruby1.8/uv/syntax/qmake_project.syntax +0 -114
  279. data/lib/kitabu/vendor/ruby1.8/uv/syntax/qt_c++.syntax +0 -26
  280. data/lib/kitabu/vendor/ruby1.8/uv/syntax/quake3_config.syntax +0 -32
  281. data/lib/kitabu/vendor/ruby1.8/uv/syntax/r.syntax +0 -81
  282. data/lib/kitabu/vendor/ruby1.8/uv/syntax/r_console.syntax +0 -16
  283. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ragel.syntax +0 -201
  284. data/lib/kitabu/vendor/ruby1.8/uv/syntax/rd_r_documentation.syntax +0 -91
  285. data/lib/kitabu/vendor/ruby1.8/uv/syntax/regexp.syntax +0 -50
  286. data/lib/kitabu/vendor/ruby1.8/uv/syntax/regular_expressions_oniguruma.syntax +0 -107
  287. data/lib/kitabu/vendor/ruby1.8/uv/syntax/regular_expressions_python.syntax +0 -109
  288. data/lib/kitabu/vendor/ruby1.8/uv/syntax/release_notes.syntax +0 -46
  289. data/lib/kitabu/vendor/ruby1.8/uv/syntax/remind.syntax +0 -253
  290. data/lib/kitabu/vendor/ruby1.8/uv/syntax/restructuredtext.syntax +0 -250
  291. data/lib/kitabu/vendor/ruby1.8/uv/syntax/rez.syntax +0 -80
  292. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ruby.syntax +0 -1035
  293. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ruby_experimental.syntax +0 -145
  294. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ruby_on_rails.syntax +0 -88
  295. data/lib/kitabu/vendor/ruby1.8/uv/syntax/s5.syntax +0 -69
  296. data/lib/kitabu/vendor/ruby1.8/uv/syntax/scheme.syntax +0 -347
  297. data/lib/kitabu/vendor/ruby1.8/uv/syntax/scilab.syntax +0 -41
  298. data/lib/kitabu/vendor/ruby1.8/uv/syntax/setext.syntax +0 -147
  299. data/lib/kitabu/vendor/ruby1.8/uv/syntax/shell-unix-generic.syntax +0 -384
  300. data/lib/kitabu/vendor/ruby1.8/uv/syntax/slate.syntax +0 -149
  301. data/lib/kitabu/vendor/ruby1.8/uv/syntax/smarty.syntax +0 -63
  302. data/lib/kitabu/vendor/ruby1.8/uv/syntax/sql.syntax +0 -237
  303. data/lib/kitabu/vendor/ruby1.8/uv/syntax/sql_rails.syntax +0 -18
  304. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ssh-config.syntax +0 -33
  305. data/lib/kitabu/vendor/ruby1.8/uv/syntax/standard_ml.syntax +0 -121
  306. data/lib/kitabu/vendor/ruby1.8/uv/syntax/strings_file.syntax +0 -39
  307. data/lib/kitabu/vendor/ruby1.8/uv/syntax/subversion_commit_message.syntax +0 -36
  308. data/lib/kitabu/vendor/ruby1.8/uv/syntax/sweave.syntax +0 -84
  309. data/lib/kitabu/vendor/ruby1.8/uv/syntax/swig.syntax +0 -57
  310. data/lib/kitabu/vendor/ruby1.8/uv/syntax/tcl.syntax +0 -152
  311. data/lib/kitabu/vendor/ruby1.8/uv/syntax/template_toolkit.syntax +0 -121
  312. data/lib/kitabu/vendor/ruby1.8/uv/syntax/tex.syntax +0 -86
  313. data/lib/kitabu/vendor/ruby1.8/uv/syntax/tex_math.syntax +0 -49
  314. data/lib/kitabu/vendor/ruby1.8/uv/syntax/textile.syntax +0 -215
  315. data/lib/kitabu/vendor/ruby1.8/uv/syntax/tsv.syntax +0 -50
  316. data/lib/kitabu/vendor/ruby1.8/uv/syntax/twiki.syntax +0 -241
  317. data/lib/kitabu/vendor/ruby1.8/uv/syntax/txt2tags.syntax +0 -79
  318. data/lib/kitabu/vendor/ruby1.8/uv/syntax/vectorscript.syntax +0 -57
  319. data/lib/kitabu/vendor/ruby1.8/uv/syntax/xhtml_1.0.syntax +0 -4027
  320. data/lib/kitabu/vendor/ruby1.8/uv/syntax/xml.syntax +0 -180
  321. data/lib/kitabu/vendor/ruby1.8/uv/syntax/xml_strict.syntax +0 -92
  322. data/lib/kitabu/vendor/ruby1.8/uv/syntax/xsl.syntax +0 -60
  323. data/lib/kitabu/vendor/ruby1.8/uv/syntax/yaml.syntax +0 -160
  324. data/lib/kitabu/vendor/ruby1.8/uv/syntax/yui_javascript.syntax +0 -176
  325. data/lib/kitabu/vendor/ruby1.8/uv/uv.rb +0 -88
  326. data/lib/kitabu/vendor/ruby1.8/uv/uv/render_processor.rb +0 -131
  327. data/lib/kitabu/vendor/ruby1.8/uv/uv/utility.rb +0 -67
  328. data/lib/kitabu/vendor/ruby1.9/plist/plist.rb +0 -23
  329. data/lib/kitabu/vendor/ruby1.9/plist/plist/generator.rb +0 -228
  330. data/lib/kitabu/vendor/ruby1.9/plist/plist/parser.rb +0 -225
  331. data/lib/kitabu/vendor/ruby1.9/textpow/textpow.rb +0 -10
  332. data/lib/kitabu/vendor/ruby1.9/textpow/textpow/debug_processor.rb +0 -37
  333. data/lib/kitabu/vendor/ruby1.9/textpow/textpow/score_manager.rb +0 -66
  334. data/lib/kitabu/vendor/ruby1.9/textpow/textpow/syntax.rb +0 -286
  335. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/active4d.render +0 -140
  336. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/all_hallows_eve.render +0 -104
  337. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/amy.render +0 -179
  338. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/blackboard.render +0 -119
  339. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/brilliance_black.render +0 -560
  340. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/brilliance_dull.render +0 -569
  341. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/cobalt.render +0 -170
  342. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/dawn.render +0 -134
  343. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/eiffel.render +0 -140
  344. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/espresso_libre.render +0 -131
  345. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/active4d.css +0 -114
  346. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/all_hallows_eve.css +0 -72
  347. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/amy.css +0 -147
  348. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/blackboard.css +0 -88
  349. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/brilliance_black.css +0 -605
  350. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/brilliance_dull.css +0 -599
  351. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/cobalt.css +0 -149
  352. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/eiffel.css +0 -121
  353. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/espresso_libre.css +0 -109
  354. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/iplastic.css +0 -80
  355. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/lazy.css +0 -73
  356. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/mac_classic.css +0 -123
  357. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/magicwb_amiga.css +0 -104
  358. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/pastels_on_dark.css +0 -188
  359. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/slush_poppies.css +0 -85
  360. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/spacecadet.css +0 -51
  361. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/sunburst.css +0 -180
  362. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/twilight.css +0 -137
  363. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/zenburnesque.css +0 -91
  364. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/idle.render +0 -101
  365. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/iplastic.render +0 -107
  366. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/lazy.render +0 -104
  367. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/mac_classic.render +0 -143
  368. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/magicwb_amiga.render +0 -125
  369. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/pastels_on_dark.render +0 -212
  370. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/slush_poppies.render +0 -131
  371. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/spacecadet.render +0 -89
  372. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/sunburst.render +0 -194
  373. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/twilight.render +0 -161
  374. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/zenburnesque.render +0 -134
  375. data/lib/kitabu/vendor/ruby1.9/uv/syntax/actionscript.syntax +0 -97
  376. data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d.syntax +0 -276
  377. data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d_html.syntax +0 -311
  378. data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d_ini.syntax +0 -50
  379. data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d_library.syntax +0 -21
  380. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ada.syntax +0 -33
  381. data/lib/kitabu/vendor/ruby1.9/uv/syntax/antlr.syntax +0 -151
  382. data/lib/kitabu/vendor/ruby1.9/uv/syntax/apache.syntax +0 -191
  383. data/lib/kitabu/vendor/ruby1.9/uv/syntax/applescript.syntax +0 -384
  384. data/lib/kitabu/vendor/ruby1.9/uv/syntax/asp.syntax +0 -70
  385. data/lib/kitabu/vendor/ruby1.9/uv/syntax/asp_vb.net.syntax +0 -129
  386. data/lib/kitabu/vendor/ruby1.9/uv/syntax/bibtex.syntax +0 -151
  387. data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_html.syntax +0 -41
  388. data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_markdown.syntax +0 -42
  389. data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_text.syntax +0 -27
  390. data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_textile.syntax +0 -27
  391. data/lib/kitabu/vendor/ruby1.9/uv/syntax/build.syntax +0 -53
  392. data/lib/kitabu/vendor/ruby1.9/uv/syntax/bulletin_board.syntax +0 -287
  393. data/lib/kitabu/vendor/ruby1.9/uv/syntax/cake.syntax +0 -55
  394. data/lib/kitabu/vendor/ruby1.9/uv/syntax/camlp4.syntax +0 -36
  395. data/lib/kitabu/vendor/ruby1.9/uv/syntax/cm.syntax +0 -32
  396. data/lib/kitabu/vendor/ruby1.9/uv/syntax/coldfusion.syntax +0 -119
  397. data/lib/kitabu/vendor/ruby1.9/uv/syntax/context_free.syntax +0 -176
  398. data/lib/kitabu/vendor/ruby1.9/uv/syntax/cs.syntax +0 -59
  399. data/lib/kitabu/vendor/ruby1.9/uv/syntax/css.syntax +0 -195
  400. data/lib/kitabu/vendor/ruby1.9/uv/syntax/css_experimental.syntax +0 -1925
  401. data/lib/kitabu/vendor/ruby1.9/uv/syntax/csv.syntax +0 -68
  402. data/lib/kitabu/vendor/ruby1.9/uv/syntax/d.syntax +0 -142
  403. data/lib/kitabu/vendor/ruby1.9/uv/syntax/diff.syntax +0 -81
  404. data/lib/kitabu/vendor/ruby1.9/uv/syntax/dokuwiki.syntax +0 -204
  405. data/lib/kitabu/vendor/ruby1.9/uv/syntax/dot.syntax +0 -47
  406. data/lib/kitabu/vendor/ruby1.9/uv/syntax/doxygen.syntax +0 -43
  407. data/lib/kitabu/vendor/ruby1.9/uv/syntax/dylan.syntax +0 -62
  408. data/lib/kitabu/vendor/ruby1.9/uv/syntax/eiffel.syntax +0 -78
  409. data/lib/kitabu/vendor/ruby1.9/uv/syntax/erlang.syntax +0 -922
  410. data/lib/kitabu/vendor/ruby1.9/uv/syntax/f-script.syntax +0 -80
  411. data/lib/kitabu/vendor/ruby1.9/uv/syntax/fortran.syntax +0 -141
  412. data/lib/kitabu/vendor/ruby1.9/uv/syntax/fxscript.syntax +0 -142
  413. data/lib/kitabu/vendor/ruby1.9/uv/syntax/greasemonkey.syntax +0 -34
  414. data/lib/kitabu/vendor/ruby1.9/uv/syntax/gri.syntax +0 -83
  415. data/lib/kitabu/vendor/ruby1.9/uv/syntax/groovy.syntax +0 -191
  416. data/lib/kitabu/vendor/ruby1.9/uv/syntax/gtd.syntax +0 -22
  417. data/lib/kitabu/vendor/ruby1.9/uv/syntax/gtdalt.syntax +0 -143
  418. data/lib/kitabu/vendor/ruby1.9/uv/syntax/haml.syntax +0 -88
  419. data/lib/kitabu/vendor/ruby1.9/uv/syntax/haskell.syntax +0 -88
  420. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html-asp.syntax +0 -27
  421. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html.syntax +0 -362
  422. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_django.syntax +0 -36
  423. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_for_asp.net.syntax +0 -424
  424. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_mason.syntax +0 -119
  425. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_rails.syntax +0 -40
  426. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_tcl.syntax +0 -26
  427. data/lib/kitabu/vendor/ruby1.9/uv/syntax/icalendar.syntax +0 -32
  428. data/lib/kitabu/vendor/ruby1.9/uv/syntax/inform.syntax +0 -48
  429. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ini.syntax +0 -55
  430. data/lib/kitabu/vendor/ruby1.9/uv/syntax/installer_distribution_script.syntax +0 -77
  431. data/lib/kitabu/vendor/ruby1.9/uv/syntax/io.syntax +0 -81
  432. data/lib/kitabu/vendor/ruby1.9/uv/syntax/java.syntax +0 -211
  433. data/lib/kitabu/vendor/ruby1.9/uv/syntax/javaproperties.syntax +0 -20
  434. data/lib/kitabu/vendor/ruby1.9/uv/syntax/javascript.syntax +0 -256
  435. data/lib/kitabu/vendor/ruby1.9/uv/syntax/javascript_+_prototype.syntax +0 -72
  436. data/lib/kitabu/vendor/ruby1.9/uv/syntax/javascript_+_prototype_bracketed.syntax +0 -140
  437. data/lib/kitabu/vendor/ruby1.9/uv/syntax/jquery_javascript.syntax +0 -114
  438. data/lib/kitabu/vendor/ruby1.9/uv/syntax/json.syntax +0 -136
  439. data/lib/kitabu/vendor/ruby1.9/uv/syntax/languagedefinition.syntax +0 -708
  440. data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex.syntax +0 -566
  441. data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex_beamer.syntax +0 -41
  442. data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex_log.syntax +0 -50
  443. data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex_memoir.syntax +0 -64
  444. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lexflex.syntax +0 -219
  445. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lighttpd.syntax +0 -54
  446. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lilypond.syntax +0 -492
  447. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lisp.syntax +0 -61
  448. data/lib/kitabu/vendor/ruby1.9/uv/syntax/literate_haskell.syntax +0 -24
  449. data/lib/kitabu/vendor/ruby1.9/uv/syntax/logo.syntax +0 -29
  450. data/lib/kitabu/vendor/ruby1.9/uv/syntax/logtalk.syntax +0 -152
  451. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lua.syntax +0 -86
  452. data/lib/kitabu/vendor/ruby1.9/uv/syntax/m.syntax +0 -142
  453. data/lib/kitabu/vendor/ruby1.9/uv/syntax/macports_portfile.syntax +0 -163
  454. data/lib/kitabu/vendor/ruby1.9/uv/syntax/makefile.syntax +0 -36
  455. data/lib/kitabu/vendor/ruby1.9/uv/syntax/man.syntax +0 -17
  456. data/lib/kitabu/vendor/ruby1.9/uv/syntax/mediawiki.syntax +0 -567
  457. data/lib/kitabu/vendor/ruby1.9/uv/syntax/mips.syntax +0 -66
  458. data/lib/kitabu/vendor/ruby1.9/uv/syntax/mod_perl.syntax +0 -50
  459. data/lib/kitabu/vendor/ruby1.9/uv/syntax/modula-3.syntax +0 -47
  460. data/lib/kitabu/vendor/ruby1.9/uv/syntax/moinmoin.syntax +0 -189
  461. data/lib/kitabu/vendor/ruby1.9/uv/syntax/mootools.syntax +0 -572
  462. data/lib/kitabu/vendor/ruby1.9/uv/syntax/movable_type.syntax +0 -162
  463. data/lib/kitabu/vendor/ruby1.9/uv/syntax/multimarkdown.syntax +0 -39
  464. data/lib/kitabu/vendor/ruby1.9/uv/syntax/objective-c++.syntax +0 -18
  465. data/lib/kitabu/vendor/ruby1.9/uv/syntax/objective-c.syntax +0 -233
  466. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ocaml.syntax +0 -764
  467. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ocamllex.syntax +0 -167
  468. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ocamlyacc.syntax +0 -184
  469. data/lib/kitabu/vendor/ruby1.9/uv/syntax/opengl.syntax +0 -14
  470. data/lib/kitabu/vendor/ruby1.9/uv/syntax/pascal.syntax +0 -77
  471. data/lib/kitabu/vendor/ruby1.9/uv/syntax/perl.syntax +0 -1115
  472. data/lib/kitabu/vendor/ruby1.9/uv/syntax/plain_text.syntax +0 -32
  473. data/lib/kitabu/vendor/ruby1.9/uv/syntax/postscript.syntax +0 -114
  474. data/lib/kitabu/vendor/ruby1.9/uv/syntax/processing.syntax +0 -106
  475. data/lib/kitabu/vendor/ruby1.9/uv/syntax/prolog.syntax +0 -40
  476. data/lib/kitabu/vendor/ruby1.9/uv/syntax/property_list.syntax +0 -635
  477. data/lib/kitabu/vendor/ruby1.9/uv/syntax/python.syntax +0 -868
  478. data/lib/kitabu/vendor/ruby1.9/uv/syntax/python_django.syntax +0 -21
  479. data/lib/kitabu/vendor/ruby1.9/uv/syntax/qmake_project.syntax +0 -114
  480. data/lib/kitabu/vendor/ruby1.9/uv/syntax/qt_c++.syntax +0 -26
  481. data/lib/kitabu/vendor/ruby1.9/uv/syntax/quake3_config.syntax +0 -32
  482. data/lib/kitabu/vendor/ruby1.9/uv/syntax/r.syntax +0 -81
  483. data/lib/kitabu/vendor/ruby1.9/uv/syntax/r_console.syntax +0 -16
  484. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ragel.syntax +0 -201
  485. data/lib/kitabu/vendor/ruby1.9/uv/syntax/rd_r_documentation.syntax +0 -91
  486. data/lib/kitabu/vendor/ruby1.9/uv/syntax/regexp.syntax +0 -50
  487. data/lib/kitabu/vendor/ruby1.9/uv/syntax/release_notes.syntax +0 -46
  488. data/lib/kitabu/vendor/ruby1.9/uv/syntax/remind.syntax +0 -253
  489. data/lib/kitabu/vendor/ruby1.9/uv/syntax/restructuredtext.syntax +0 -250
  490. data/lib/kitabu/vendor/ruby1.9/uv/syntax/rez.syntax +0 -80
  491. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ruby.syntax +0 -1035
  492. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ruby_experimental.syntax +0 -145
  493. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ruby_on_rails.syntax +0 -88
  494. data/lib/kitabu/vendor/ruby1.9/uv/syntax/s5.syntax +0 -69
  495. data/lib/kitabu/vendor/ruby1.9/uv/syntax/scheme.syntax +0 -347
  496. data/lib/kitabu/vendor/ruby1.9/uv/syntax/scilab.syntax +0 -41
  497. data/lib/kitabu/vendor/ruby1.9/uv/syntax/setext.syntax +0 -147
  498. data/lib/kitabu/vendor/ruby1.9/uv/syntax/shell-unix-generic.syntax +0 -384
  499. data/lib/kitabu/vendor/ruby1.9/uv/syntax/slate.syntax +0 -149
  500. data/lib/kitabu/vendor/ruby1.9/uv/syntax/sql.syntax +0 -237
  501. data/lib/kitabu/vendor/ruby1.9/uv/syntax/sql_rails.syntax +0 -18
  502. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ssh-config.syntax +0 -33
  503. data/lib/kitabu/vendor/ruby1.9/uv/syntax/standard_ml.syntax +0 -121
  504. data/lib/kitabu/vendor/ruby1.9/uv/syntax/strings_file.syntax +0 -39
  505. data/lib/kitabu/vendor/ruby1.9/uv/syntax/subversion_commit_message.syntax +0 -36
  506. data/lib/kitabu/vendor/ruby1.9/uv/syntax/sweave.syntax +0 -84
  507. data/lib/kitabu/vendor/ruby1.9/uv/syntax/swig.syntax +0 -57
  508. data/lib/kitabu/vendor/ruby1.9/uv/syntax/tcl.syntax +0 -152
  509. data/lib/kitabu/vendor/ruby1.9/uv/syntax/template_toolkit.syntax +0 -121
  510. data/lib/kitabu/vendor/ruby1.9/uv/syntax/tex.syntax +0 -86
  511. data/lib/kitabu/vendor/ruby1.9/uv/syntax/tex_math.syntax +0 -49
  512. data/lib/kitabu/vendor/ruby1.9/uv/syntax/textile.syntax +0 -215
  513. data/lib/kitabu/vendor/ruby1.9/uv/syntax/tsv.syntax +0 -50
  514. data/lib/kitabu/vendor/ruby1.9/uv/syntax/twiki.syntax +0 -241
  515. data/lib/kitabu/vendor/ruby1.9/uv/syntax/txt2tags.syntax +0 -79
  516. data/lib/kitabu/vendor/ruby1.9/uv/syntax/vectorscript.syntax +0 -57
  517. data/lib/kitabu/vendor/ruby1.9/uv/syntax/xhtml_1.0.syntax +0 -4027
  518. data/lib/kitabu/vendor/ruby1.9/uv/syntax/xml.syntax +0 -180
  519. data/lib/kitabu/vendor/ruby1.9/uv/syntax/xml_strict.syntax +0 -92
  520. data/lib/kitabu/vendor/ruby1.9/uv/syntax/xsl.syntax +0 -60
  521. data/lib/kitabu/vendor/ruby1.9/uv/syntax/yaml.syntax +0 -160
  522. data/lib/kitabu/vendor/ruby1.9/uv/syntax/yui_javascript.syntax +0 -176
  523. data/lib/kitabu/vendor/ruby1.9/uv/uv.rb +0 -89
  524. data/lib/kitabu/vendor/ruby1.9/uv/uv/render_processor.rb +0 -132
  525. data/lib/kitabu/vendor/ruby1.9/uv/uv/utility.rb +0 -68
  526. data/spec/exit_matcher.rb +0 -45
  527. data/spec/fixtures/rails-guides/code/sample.rb +0 -7
  528. data/spec/kitabu/base_spec.rb +0 -159
  529. data/spec/kitabu/blackcloth_spec.rb +0 -41
  530. data/spec/kitabu/bug_fix_spec.rb +0 -25
  531. data/spec/kitabu/command_spec.rb +0 -82
  532. data/templates/Rakefile +0 -3
  533. data/templates/config.yml +0 -9
  534. data/templates/layouts/boom/layout.css +0 -469
  535. data/templates/syntax.css +0 -1065
  536. data/templates/themes/active4d.css +0 -114
  537. data/templates/themes/blackboard.css +0 -88
  538. data/templates/themes/dawn.css +0 -121
  539. data/templates/themes/eiffel.css +0 -121
  540. data/templates/themes/idle.css +0 -62
  541. data/templates/themes/iplastic.css +0 -80
  542. data/templates/themes/lazy.css +0 -73
  543. data/templates/themes/slush_poppies.css +0 -85
  544. data/templates/themes/sunburst.css +0 -180
@@ -1,114 +0,0 @@
1
- pre.active4d .DiffHeader {
2
- background-color: #656565;
3
- color: #FFFFFF;
4
- }
5
- pre.active4d .Operator {
6
- }
7
- pre.active4d .InheritedClass {
8
- }
9
- pre.active4d .TypeName {
10
- color: #21439C;
11
- }
12
- pre.active4d .Number {
13
- color: #A8017E;
14
- }
15
- pre.active4d .EmbeddedSource {
16
- background-color: #ECF1FF;
17
- }
18
- pre.active4d {
19
- background-color: #FFFFFF;
20
- color: #000000;
21
- }
22
- pre.active4d .DiffInsertedLine {
23
- background-color: #98FF9A;
24
- color: #000000;
25
- }
26
- pre.active4d .LibraryVariable {
27
- color: #A535AE;
28
- }
29
- pre.active4d .Storage {
30
- color: #FF5600;
31
- }
32
- pre.active4d .InterpolatedEntity {
33
- font-weight: bold;
34
- color: #66CCFF;
35
- }
36
- pre.active4d .line-numbers {
37
- background-color: #BAD6FD;
38
- color: #000000;
39
- }
40
- pre.active4d .LocalVariable {
41
- font-weight: bold;
42
- color: #6392FF;
43
- }
44
- pre.active4d .DiffLineRange {
45
- background-color: #1B63FF;
46
- color: #FFFFFF;
47
- }
48
- pre.active4d .BlockComment {
49
- color: #D33435;
50
- }
51
- pre.active4d .TagName {
52
- color: #016CFF;
53
- }
54
- pre.active4d .FunctionArgument {
55
- }
56
- pre.active4d .BuiltInConstant {
57
- color: #A535AE;
58
- }
59
- pre.active4d .LineComment {
60
- color: #D33535;
61
- }
62
- pre.active4d .DiffDeletedLine {
63
- background-color: #FF7880;
64
- color: #000000;
65
- }
66
- pre.active4d .NamedConstant {
67
- color: #B7734C;
68
- }
69
- pre.active4d .CommandMethod {
70
- font-weight: bold;
71
- color: #45AE34;
72
- }
73
- pre.active4d .TableField {
74
- color: #0BB600;
75
- }
76
- pre.active4d .PlainXmlText {
77
- color: #000000;
78
- }
79
- pre.active4d .Invalid {
80
- background-color: #990000;
81
- color: #FFFFFF;
82
- }
83
- pre.active4d .LibraryClassType {
84
- color: #A535AE;
85
- }
86
- pre.active4d .TagAttribute {
87
- color: #963DFF;
88
- }
89
- pre.active4d .Keyword {
90
- font-weight: bold;
91
- color: #006699;
92
- }
93
- pre.active4d .UserDefinedConstant {
94
- }
95
- pre.active4d .String {
96
- color: #666666;
97
- }
98
- pre.active4d .DiffUnchangedLine {
99
- color: #5E5E5E;
100
- }
101
- pre.active4d .TagContainer {
102
- color: #7A7A7A;
103
- }
104
- pre.active4d .FunctionName {
105
- color: #21439C;
106
- }
107
- pre.active4d .Variable {
108
- font-weight: bold;
109
- color: #0053FF;
110
- }
111
- pre.active4d .DateTimeLiteral {
112
- font-weight: bold;
113
- color: #66CCFF;
114
- }
@@ -1,72 +0,0 @@
1
- pre.all_hallows_eve .ClassInheritance {
2
- font-style: italic;
3
- }
4
- pre.all_hallows_eve .Constant {
5
- color: #3387CC;
6
- }
7
- pre.all_hallows_eve .TypeName {
8
- text-decoration: underline;
9
- }
10
- pre.all_hallows_eve .TextBase {
11
- background-color: #434242;
12
- color: #FFFFFF;
13
- }
14
- pre.all_hallows_eve {
15
- background-color: #000000;
16
- color: #FFFFFF;
17
- }
18
- pre.all_hallows_eve .StringEscapesExecuted {
19
- color: #555555;
20
- }
21
- pre.all_hallows_eve .line-numbers {
22
- background-color: #73597E;
23
- color: #FFFFFF;
24
- }
25
- pre.all_hallows_eve .StringExecuted {
26
- background-color: #CCCC33;
27
- color: #000000;
28
- }
29
- pre.all_hallows_eve .BlockComment {
30
- background-color: #9B9B9B;
31
- color: #FFFFFF;
32
- }
33
- pre.all_hallows_eve .TagName {
34
- text-decoration: underline;
35
- }
36
- pre.all_hallows_eve .PreProcessorLine {
37
- color: #D0D0FF;
38
- }
39
- pre.all_hallows_eve .SupportFunction {
40
- color: #C83730;
41
- }
42
- pre.all_hallows_eve .FunctionArgument {
43
- font-style: italic;
44
- }
45
- pre.all_hallows_eve .PreProcessorDirective {
46
- }
47
- pre.all_hallows_eve .StringEscapes {
48
- color: #AAAAAA;
49
- }
50
- pre.all_hallows_eve .SourceBase {
51
- background-color: #000000;
52
- color: #FFFFFF;
53
- }
54
- pre.all_hallows_eve .TagAttribute {
55
- }
56
- pre.all_hallows_eve .StringLiteral {
57
- color: #CCCC33;
58
- }
59
- pre.all_hallows_eve .String {
60
- color: #66CC33;
61
- }
62
- pre.all_hallows_eve .Keyword {
63
- color: #CC7833;
64
- }
65
- pre.all_hallows_eve .RegularExpression {
66
- color: #CCCC33;
67
- }
68
- pre.all_hallows_eve .FunctionName {
69
- }
70
- pre.all_hallows_eve .Comment {
71
- color: #9933CC;
72
- }
@@ -1,147 +0,0 @@
1
- pre.amy .PolymorphicVariants {
2
- color: #60B0FF;
3
- font-style: italic;
4
- }
5
- pre.amy .KeywordDecorator {
6
- color: #D0D0FF;
7
- }
8
- pre.amy .Punctuation {
9
- color: #805080;
10
- }
11
- pre.amy .InheritedClass {
12
- }
13
- pre.amy .InvalidDepricated {
14
- background-color: #CC66FF;
15
- color: #200020;
16
- }
17
- pre.amy .LibraryVariable {
18
- }
19
- pre.amy .TokenReferenceOcamlyacc {
20
- color: #3CB0D0;
21
- }
22
- pre.amy .Storage {
23
- color: #B0FFF0;
24
- }
25
- pre.amy .KeywordOperator {
26
- color: #A0A0FF;
27
- }
28
- pre.amy .CharacterConstant {
29
- color: #666666;
30
- }
31
- pre.amy .line-numbers {
32
- background-color: #800000;
33
- color: #000000;
34
- }
35
- pre.amy .ClassName {
36
- color: #70E080;
37
- }
38
- pre.amy .Int64Constant {
39
- font-style: italic;
40
- }
41
- pre.amy .NonTerminalReferenceOcamlyacc {
42
- color: #C0F0F0;
43
- }
44
- pre.amy .TokenDefinitionOcamlyacc {
45
- color: #3080A0;
46
- }
47
- pre.amy .ClassType {
48
- color: #70E0A0;
49
- }
50
- pre.amy .ControlKeyword {
51
- color: #80A0FF;
52
- }
53
- pre.amy .LineNumberDirectives {
54
- text-decoration: underline;
55
- color: #C080C0;
56
- }
57
- pre.amy .FloatingPointConstant {
58
- text-decoration: underline;
59
- }
60
- pre.amy .Int32Constant {
61
- font-weight: bold;
62
- }
63
- pre.amy .TagName {
64
- color: #009090;
65
- }
66
- pre.amy .ModuleTypeDefinitions {
67
- text-decoration: underline;
68
- color: #B000B0;
69
- }
70
- pre.amy .Integer {
71
- color: #7090B0;
72
- }
73
- pre.amy .Camlp4TempParser {
74
- }
75
- pre.amy .InvalidIllegal {
76
- font-weight: bold;
77
- background-color: #FFFF00;
78
- color: #400080;
79
- }
80
- pre.amy .LibraryConstant {
81
- background-color: #200020;
82
- }
83
- pre.amy .ModuleDefinitions {
84
- color: #B000B0;
85
- }
86
- pre.amy .Variants {
87
- color: #60B0FF;
88
- }
89
- pre.amy .CompilerDirectives {
90
- color: #C080C0;
91
- }
92
- pre.amy .FloatingPointInfixOperator {
93
- text-decoration: underline;
94
- }
95
- pre.amy .BuiltInConstant1 {
96
- }
97
- pre.amy {
98
- background-color: #200020;
99
- color: #D0D0FF;
100
- }
101
- pre.amy .FunctionArgument {
102
- color: #80B0B0;
103
- }
104
- pre.amy .FloatingPointPrefixOperator {
105
- text-decoration: underline;
106
- }
107
- pre.amy .NativeintConstant {
108
- font-weight: bold;
109
- }
110
- pre.amy .BuiltInConstant {
111
- color: #707090;
112
- }
113
- pre.amy .BooleanConstant {
114
- color: #8080A0;
115
- }
116
- pre.amy .LibraryClassType {
117
- }
118
- pre.amy .TagAttribute {
119
- }
120
- pre.amy .Keyword {
121
- color: #A080FF;
122
- }
123
- pre.amy .UserDefinedConstant {
124
- }
125
- pre.amy .String {
126
- color: #999999;
127
- }
128
- pre.amy .Camlp4Code {
129
- background-color: #350060;
130
- }
131
- pre.amy .NonTerminalDefinitionOcamlyacc {
132
- color: #90E0E0;
133
- }
134
- pre.amy .FunctionName {
135
- color: #50A0A0;
136
- }
137
- pre.amy .SupportModules {
138
- color: #A00050;
139
- }
140
- pre.amy .Variable {
141
- color: #008080;
142
- }
143
- pre.amy .Comment {
144
- background-color: #200020;
145
- color: #404080;
146
- font-style: italic;
147
- }
@@ -1,88 +0,0 @@
1
- pre.blackboard .LatexSupport {
2
- color: #FBDE2D;
3
- }
4
- pre.blackboard .OcamlInfixOperator {
5
- color: #8DA6CE;
6
- }
7
- pre.blackboard .MetaFunctionCallPy {
8
- color: #BECDE6;
9
- }
10
- pre.blackboard .Superclass {
11
- color: #FF6400;
12
- font-style: italic;
13
- }
14
- pre.blackboard .Constant {
15
- color: #D8FA3C;
16
- }
17
- pre.blackboard {
18
- background-color: #0C1021;
19
- color: #F8F8F8;
20
- }
21
- pre.blackboard .OcamlFPConstant {
22
- text-decoration: underline;
23
- }
24
- pre.blackboard .OcamlFPInfixOperator {
25
- text-decoration: underline;
26
- }
27
- pre.blackboard .Support {
28
- color: #8DA6CE;
29
- }
30
- pre.blackboard .OcamlOperator {
31
- color: #F8F8F8;
32
- }
33
- pre.blackboard .Storage {
34
- color: #FBDE2D;
35
- }
36
- pre.blackboard .line-numbers {
37
- background-color: #253B76;
38
- color: #FFFFFF;
39
- }
40
- pre.blackboard .StringInterpolation {
41
- color: #FF6400;
42
- }
43
- pre.blackboard .InvalidIllegal {
44
- background-color: #9D1E15;
45
- color: #F8F8F8;
46
- }
47
- pre.blackboard .PlistUnquotedString {
48
- color: #FFFFFF;
49
- }
50
- pre.blackboard .OcamlVariant {
51
- color: #D5E0F3;
52
- }
53
- pre.blackboard .MetaTag {
54
- color: #7F90AA;
55
- }
56
- pre.blackboard .LatexEnvironment {
57
- background-color: #F7F7F8;
58
- }
59
- pre.blackboard .OcamlFPPrefixOperator {
60
- text-decoration: underline;
61
- }
62
- pre.blackboard .OcamlPrefixOperator {
63
- color: #8DA6CE;
64
- }
65
- pre.blackboard .EntityNameSection {
66
- color: #FFFFFF;
67
- }
68
- pre.blackboard .String {
69
- color: #61CE3C;
70
- }
71
- pre.blackboard .Keyword {
72
- color: #FBDE2D;
73
- }
74
- pre.blackboard .LatexEnvironmentNested {
75
- background-color: #7691F3;
76
- }
77
- pre.blackboard .InvalidDeprecated {
78
- color: #AB2A1D;
79
- font-style: italic;
80
- }
81
- pre.blackboard .Variable {
82
- }
83
- pre.blackboard .Entity {
84
- color: #FF6400;
85
- }
86
- pre.blackboard .Comment {
87
- color: #AEAEAE;
88
- }
@@ -1,605 +0,0 @@
1
- pre.brilliance_black .MetaGroupBraces2 {
2
- background-color: #0E0E0E;
3
- }
4
- pre.brilliance_black .StringEmbeddedSource {
5
- color: #406180;
6
- }
7
- pre.brilliance_black .line-numbers {
8
- background-color: #2E2EE6;
9
- color: #000000;
10
- }
11
- pre.brilliance_black .StorageModifier {
12
- color: #803D00;
13
- }
14
- pre.brilliance_black .TagWildcard {
15
- font-weight: bold;
16
- color: #FF7900;
17
- }
18
- pre.brilliance_black .MUnderline {
19
- text-decoration: underline;
20
- }
21
- pre.brilliance_black .MetaGroupBraces3 {
22
- background-color: #111111;
23
- }
24
- pre.brilliance_black .MiscPunctuation {
25
- font-weight: bold;
26
- color: #4C4C4C;
27
- }
28
- pre.brilliance_black .LEntityNameSection {
29
- background-color: #FFFFFF;
30
- color: #000000;
31
- }
32
- pre.brilliance_black .MItalic {
33
- font-style: italic;
34
- }
35
- pre.brilliance_black .MetaGroupBraces4 {
36
- background-color: #151515;
37
- }
38
- pre.brilliance_black .DDiffDelete {
39
- background-color: #400021;
40
- color: #FF40A3;
41
- }
42
- pre.brilliance_black .LMetaEnvironmentList {
43
- background-color: #010101;
44
- color: #515151;
45
- }
46
- pre.brilliance_black .InheritedClass {
47
- background-color: #480204;
48
- color: #FF0086;
49
- }
50
- pre.brilliance_black .LKeywordOperatorBraces {
51
- color: #666666;
52
- }
53
- pre.brilliance_black .MetaGroupBraces5 {
54
- background-color: #191919;
55
- }
56
- pre.brilliance_black .ObjectPunctuation {
57
- font-weight: bold;
58
- color: #0C823B;
59
- }
60
- pre.brilliance_black .LMetaEndDocument {
61
- background-color: #CDCDCD;
62
- color: #000000;
63
- }
64
- pre.brilliance_black .LibraryConstant {
65
- color: #00FFF8;
66
- }
67
- pre.brilliance_black .LibraryVariable {
68
- background-color: #024846;
69
- color: #00FFF8;
70
- }
71
- pre.brilliance_black .MetaGroupBraces6 {
72
- background-color: #1C1C1C;
73
- }
74
- pre.brilliance_black .MetaSourceEmbedded {
75
- background-color: #010101;
76
- color: #666666;
77
- }
78
- pre.brilliance_black .MetaBracePipe {
79
- background-color: #1E1E1E;
80
- color: #4C4C4C;
81
- }
82
- pre.brilliance_black .LMetaLabelReference {
83
- background-color: #404040;
84
- }
85
- pre.brilliance_black .MetaGroupBraces7 {
86
- background-color: #1F1F1F;
87
- }
88
- pre.brilliance_black .TagBlockForm {
89
- background-color: #031C34;
90
- }
91
- pre.brilliance_black .MRawBlock {
92
- background-color: #000000;
93
- color: #999999;
94
- }
95
- pre.brilliance_black .KeywordControl {
96
- background-color: #230248;
97
- color: #F800FF;
98
- }
99
- pre.brilliance_black .KeywordOperatorGetter {
100
- color: #8083FF;
101
- }
102
- pre.brilliance_black .LVariableParameterCite {
103
- background-color: #400022;
104
- color: #FFBFE1;
105
- }
106
- pre.brilliance_black .MetaGroupBraces8 {
107
- background-color: #212121;
108
- }
109
- pre.brilliance_black .MetaDelimiter {
110
- font-weight: bold;
111
- background-color: #151515;
112
- color: #FFFFFF;
113
- }
114
- pre.brilliance_black .LMetaEnvironmentList2 {
115
- background-color: #010101;
116
- color: #515151;
117
- }
118
- pre.brilliance_black .LMetaFootnote {
119
- background-color: #020448;
120
- color: #3D43EF;
121
- }
122
- pre.brilliance_black .KeywordOperatorSetter {
123
- }
124
- pre.brilliance_black .StringRegexGroup1 {
125
- background-color: #274802;
126
- }
127
- pre.brilliance_black .TagName {
128
- color: #EFEFEF;
129
- }
130
- pre.brilliance_black .VariableLanguageThisJsPrototype {
131
- color: #666666;
132
- }
133
- pre.brilliance_black .MetaGroupBraces9 {
134
- background-color: #242424;
135
- }
136
- pre.brilliance_black .BoldStringQuotes {
137
- font-weight: bold;
138
- color: #803D00;
139
- }
140
- pre.brilliance_black .MetaDelimiterObjectJs {
141
- background-color: #010101;
142
- }
143
- pre.brilliance_black .MetaDelimiterStatementJs {
144
- background-color: #000000;
145
- }
146
- pre.brilliance_black .Invalid {
147
- font-weight: bold;
148
- background-color: #FF0007;
149
- color: #330000;
150
- }
151
- pre.brilliance_black .LMetaEnvironmentList3 {
152
- background-color: #000000;
153
- color: #515151;
154
- }
155
- pre.brilliance_black .MQuoteBlock {
156
- background-color: #656565;
157
- }
158
- pre.brilliance_black .ClassMethod {
159
- color: #FF0086;
160
- }
161
- pre.brilliance_black .Keyword {
162
- color: #F800FF;
163
- }
164
- pre.brilliance_black .AttributeMatch {
165
- background-color: #020448;
166
- color: #0007FF;
167
- }
168
- pre.brilliance_black .HackKeywordControlRubyStartBlock {
169
- }
170
- pre.brilliance_black .StringRegexGroup2 {
171
- background-color: #274802;
172
- color: #EBEBEB;
173
- }
174
- pre.brilliance_black .MetaBraceCurlyFunction {
175
- background-color: #230248;
176
- color: #8083FF;
177
- }
178
- pre.brilliance_black .DDiffAdd {
179
- background-color: #00401E;
180
- color: #40FF9A;
181
- }
182
- pre.brilliance_black .MetaBraceErbReturnValue {
183
- background-color: #284935;
184
- color: #45815D;
185
- }
186
- pre.brilliance_black .LMetaEnvironmentList4 {
187
- color: #515151;
188
- }
189
- pre.brilliance_black .TagAttribute {
190
- color: #F5F5F5;
191
- }
192
- pre.brilliance_black .MReference {
193
- color: #0086FF;
194
- }
195
- pre.brilliance_black .Function {
196
- background-color: #480227;
197
- color: #800043;
198
- }
199
- pre.brilliance_black .StringRegexGroup3 {
200
- background-color: #274802;
201
- color: #EBEBEB;
202
- }
203
- pre.brilliance_black .GlobalVariable {
204
- background-color: #022748;
205
- color: #00807C;
206
- }
207
- pre.brilliance_black .LMetaEnvironmentList5 {
208
- color: #515151;
209
- }
210
- pre.brilliance_black .EntityNamePreprocessor {
211
- background-color: #482302;
212
- }
213
- pre.brilliance_black .StringRegexGroup4 {
214
- background-color: #274802;
215
- color: #EBEBEB;
216
- }
217
- pre.brilliance_black .LSupportFunctionSection {
218
- color: #D9D9D9;
219
- }
220
- pre.brilliance_black .LMetaEnvironmentList6 {
221
- color: #515151;
222
- }
223
- pre.brilliance_black .Id {
224
- color: #FF0086;
225
- }
226
- pre.brilliance_black .CurlyPunctuation {
227
- font-weight: bold;
228
- color: #FFFFFF;
229
- }
230
- pre.brilliance_black .SubtlegradientCom {
231
- background-color: #FFFFFF;
232
- text-decoration: underline;
233
- color: #555555;
234
- }
235
- pre.brilliance_black .StringPunctuation {
236
- color: #803D00;
237
- }
238
- pre.brilliance_black .LSupportFunction {
239
- color: #BC80FF;
240
- }
241
- pre.brilliance_black .TextSubversionCommit {
242
- background-color: #FFFFFF;
243
- color: #000000;
244
- }
245
- pre.brilliance_black .SourceEmbededSource {
246
- background-color: #161616;
247
- }
248
- pre.brilliance_black .TagOther {
249
- background-color: #480204;
250
- color: #FF0007;
251
- }
252
- pre.brilliance_black .ClassVariable {
253
- background-color: #02068E;
254
- color: #0086FF;
255
- }
256
- pre.brilliance_black .LVariableParameterLabel {
257
- color: #E6E6E6;
258
- }
259
- pre.brilliance_black .MetaGroupAssertionRegexp {
260
- background-color: #024B8E;
261
- }
262
- pre.brilliance_black .DDiffChanged {
263
- background-color: #803D00;
264
- color: #FFFF55;
265
- }
266
- pre.brilliance_black .HtmlComment {
267
- font-style: italic;
268
- }
269
- pre.brilliance_black .StringInterpolated {
270
- background-color: #1A1A1A;
271
- color: #FFFC80;
272
- }
273
- pre.brilliance_black .BuiltInConstant1 {
274
- background-color: #044802;
275
- color: #07FF00;
276
- }
277
- pre.brilliance_black .InstanceConstructor {
278
- background-color: #480227;
279
- }
280
- pre.brilliance_black .Instance {
281
- color: #FF0007;
282
- }
283
- pre.brilliance_black .MetaPropertyList {
284
- font-weight: bold;
285
- color: #333333;
286
- }
287
- pre.brilliance_black .Latex {
288
- }
289
- pre.brilliance_black .LMarkupRaw {
290
- background-color: #000000;
291
- }
292
- pre.brilliance_black .StringPunctuationIi {
293
- color: #F5EF28;
294
- }
295
- pre.brilliance_black .Css {
296
- }
297
- pre.brilliance_black .ClassName {
298
- color: #FF0007;
299
- }
300
- pre.brilliance_black .MetaPropertyName {
301
- color: #999999;
302
- }
303
- pre.brilliance_black .LKeywordControlRef {
304
- background-color: #260001;
305
- color: #FF0007;
306
- }
307
- pre.brilliance_black .MetaHeadersBlogKeywordOtherBlog {
308
- background-color: #036562;
309
- color: #06403E;
310
- }
311
- pre.brilliance_black .PseudoClass {
312
- color: #7900FF;
313
- }
314
- pre.brilliance_black .TagBlockHead {
315
- background-color: #121212;
316
- }
317
- pre.brilliance_black .StringRegexArbitraryRepitition {
318
- background-color: #274802;
319
- color: #00FFF8;
320
- }
321
- pre.brilliance_black .LKeywordOperatorDelimiter {
322
- background-color: #010101;
323
- }
324
- pre.brilliance_black .FunctionArgument {
325
- background-color: #230248;
326
- color: #8083FF;
327
- }
328
- pre.brilliance_black .MReferenceName {
329
- background-color: #022748;
330
- color: #00FFF8;
331
- }
332
- pre.brilliance_black .TextSubversionCommitMetaScopeChangedFiles {
333
- background-color: #000000;
334
- color: #FFFFFF;
335
- }
336
- pre.brilliance_black .VariablePunctuation {
337
- color: #666666;
338
- }
339
- pre.brilliance_black .MUnderlineLink {
340
- text-decoration: underline;
341
- color: #00FFF8;
342
- }
343
- pre.brilliance_black .Selector {
344
- background-color: #010101;
345
- color: #666666;
346
- }
347
- pre.brilliance_black .TagDoctype {
348
- background-color: #333333;
349
- color: #CDCDCD;
350
- }
351
- pre.brilliance_black .Class {
352
- background-color: #8E0206;
353
- color: #800004;
354
- }
355
- pre.brilliance_black .BuiltInConstant {
356
- color: #07FF00;
357
- }
358
- pre.brilliance_black .MBold {
359
- font-weight: bold;
360
- }
361
- pre.brilliance_black .MHeading {
362
- background-color: #272727;
363
- color: #666666;
364
- }
365
- pre.brilliance_black .ConstantVariable {
366
- color: #00FFF8;
367
- }
368
- pre.brilliance_black .XmlTag {
369
- color: #666666;
370
- }
371
- pre.brilliance_black .MHr {
372
- background-color: #FFFFFF;
373
- color: #000000;
374
- }
375
- pre.brilliance_black .LKeywordControlCite {
376
- background-color: #260014;
377
- color: #FF0086;
378
- }
379
- pre.brilliance_black .FunctionPunctuation {
380
- font-weight: bold;
381
- color: #800043;
382
- }
383
- pre.brilliance_black .Variable {
384
- color: #0086FF;
385
- }
386
- pre.brilliance_black .Syntax {
387
- color: #333333;
388
- }
389
- pre.brilliance_black .MetaPropertyValue {
390
- background-color: #0D0D0D;
391
- color: #999999;
392
- }
393
- pre.brilliance_black .KeywordOperator {
394
- color: #6100CC;
395
- }
396
- pre.brilliance_black .StringUnquoted {
397
- color: #FFBC80;
398
- }
399
- pre.brilliance_black .LConstantLanguageGeneral {
400
- }
401
- pre.brilliance_black .TextStringSource {
402
- color: #999999;
403
- }
404
- pre.brilliance_black .LVariableParameterLabelReference {
405
- background-color: #400002;
406
- color: #FFBC80;
407
- }
408
- pre.brilliance_black .Source {
409
- background-color: #000000;
410
- }
411
- pre.brilliance_black .MetaHeadersBlogStringUnquotedBlog {
412
- background-color: #656523;
413
- color: #803D00;
414
- }
415
- pre.brilliance_black .StringRegexCharacterClass {
416
- background-color: #274802;
417
- color: #86FF00;
418
- }
419
- pre.brilliance_black .LibraryFunction {
420
- color: #6100CC;
421
- }
422
- pre.brilliance_black .MetaBlockContentSlate {
423
- color: #CDCDCD;
424
- }
425
- pre.brilliance_black .TextStringSourceStringSource {
426
- }
427
- pre.brilliance_black .MetaBraceErb1 {
428
- background-color: #000000;
429
- }
430
- pre.brilliance_black .TagInline {
431
- background-color: #482302;
432
- color: #FF7900;
433
- }
434
- pre.brilliance_black .String {
435
- background-color: #482302;
436
- color: #FFFC80;
437
- }
438
- pre.brilliance_black .MetaBlockSlate {
439
- color: #666666;
440
- }
441
- pre.brilliance_black .MetaHeadersBlog1 {
442
- background-color: #FFFFFF;
443
- color: #666666;
444
- }
445
- pre.brilliance_black .SourceRubyRailsEmbeddedOneLine {
446
- background-color: #036562;
447
- }
448
- pre.brilliance_black .SourceRubyRailsEmbeddedReturnValueOneLine {
449
- background-color: #3A3A3A;
450
- }
451
- pre.brilliance_black .MMarkup {
452
- background-color: #1E1E1E;
453
- color: #FFF800;
454
- }
455
- pre.brilliance_black .TagBlock {
456
- background-color: #2C2C2C;
457
- color: #4C4C4C;
458
- }
459
- pre.brilliance_black .CommentPunctuation1 {
460
- color: #333333;
461
- }
462
- pre.brilliance_black .SourceStringInterpolatedSource {
463
- background-color: #010101;
464
- color: #999999;
465
- }
466
- pre.brilliance_black .SourceStringSource {
467
- background-color: #272727;
468
- color: #FFFFFF;
469
- }
470
- pre.brilliance_black .xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx {
471
- background-color: #FFFFFF;
472
- color: #E6E6E6;
473
- }
474
- pre.brilliance_black .LKeywordOperatorBrackets {
475
- color: #999999;
476
- }
477
- pre.brilliance_black .SourceRegexpKeyword {
478
- color: #FF0086;
479
- }
480
- pre.brilliance_black .TagMeta {
481
- background-color: #230248;
482
- color: #F800FF;
483
- }
484
- pre.brilliance_black .GlobalPreDefinedVariable {
485
- background-color: #024846;
486
- color: #00FF79;
487
- }
488
- pre.brilliance_black .TagForm {
489
- background-color: #022748;
490
- color: #0086FF;
491
- }
492
- pre.brilliance_black .Tag {
493
- color: #333333;
494
- }
495
- pre.brilliance_black .UserDefinedConstant {
496
- color: #00FF79;
497
- }
498
- pre.brilliance_black .NormalVariables {
499
- color: #406180;
500
- }
501
- pre.brilliance_black .ThomasAylott {
502
- font-weight: bold;
503
- background-color: #FFFFFF;
504
- color: #000000;
505
- }
506
- pre.brilliance_black .Comment1 {
507
- color: #333333;
508
- }
509
- pre.brilliance_black .TextSource {
510
- background-color: #000000;
511
- color: #CCCCCC;
512
- }
513
- pre.brilliance_black .MetaBraceErb {
514
- background-color: #036562;
515
- color: #00FFF8;
516
- }
517
- pre.brilliance_black .SupportTypePropertyName {
518
- background-color: #000000;
519
- color: #FFFFFF;
520
- }
521
- pre.brilliance_black .StringLiteral {
522
- background-color: #274802;
523
- color: #FFF800;
524
- }
525
- pre.brilliance_black .MetaGroupBracesRoundJs {
526
- }
527
- pre.brilliance_black .MetaHeadersBlog {
528
- background-color: #FFFFFF;
529
- }
530
- pre.brilliance_black .Comment {
531
- background-color: #030365;
532
- color: #5555FF;
533
- font-style: italic;
534
- }
535
- pre.brilliance_black .Class1 {
536
- color: #F800FF;
537
- }
538
- pre.brilliance_black .Text {
539
- color: #FFFFFF;
540
- }
541
- pre.brilliance_black .StringRegex {
542
- background-color: #274802;
543
- color: #FFF800;
544
- }
545
- pre.brilliance_black .CommentPunctuation {
546
- font-weight: bold;
547
- color: #1414F9;
548
- }
549
- pre.brilliance_black .MetaTagInlineSource {
550
- background-color: #482302;
551
- }
552
- pre.brilliance_black .TagStructure {
553
- background-color: #2A2A2A;
554
- color: #666666;
555
- }
556
- pre.brilliance_black .Tag1 {
557
- color: #FF0007;
558
- }
559
- pre.brilliance_black .FunctionName {
560
- color: #FF0086;
561
- }
562
- pre.brilliance_black .LMetaGroupBraces {
563
- color: #515151;
564
- }
565
- pre.brilliance_black .Storage {
566
- color: #FF7900;
567
- }
568
- pre.brilliance_black .MetaAssertion {
569
- color: #0086FF;
570
- }
571
- pre.brilliance_black .MetaBraceCurlyMetaGroup {
572
- background-color: #010101;
573
- color: #CDCDCD;
574
- }
575
- pre.brilliance_black .ArrayPunctuation {
576
- font-weight: bold;
577
- background-color: #341A03;
578
- color: #7F5E40;
579
- }
580
- pre.brilliance_black .SpecialFunction {
581
- color: #8C60BF;
582
- }
583
- pre.brilliance_black .InstanceVariable {
584
- color: #406180;
585
- }
586
- pre.brilliance_black .CharacterConstant {
587
- color: #86FF00;
588
- }
589
- pre.brilliance_black {
590
- background-color: #050505;
591
- color: #CDCDCD;
592
- }
593
- pre.brilliance_black .LibraryClassType {
594
- background-color: #480204;
595
- color: #FF0007;
596
- }
597
- pre.brilliance_black .Number {
598
- color: #C6FF00;
599
- }
600
- pre.brilliance_black .MetaGroupBraces1 {
601
- background-color: #0A0A0A;
602
- }
603
- pre.brilliance_black .TagValue {
604
- color: #EBEBEB;
605
- }