kitabu 0.4.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (454) hide show
  1. data/README.markdown +60 -0
  2. data/Rakefile +37 -0
  3. data/VERSION +1 -0
  4. data/bin/kitabu +8 -0
  5. data/kitabu.gemspec +497 -0
  6. data/lib/kitabu.rb +50 -0
  7. data/lib/kitabu/base.rb +271 -0
  8. data/lib/kitabu/blackcloth.rb +179 -0
  9. data/lib/kitabu/command.rb +94 -0
  10. data/lib/kitabu/redcloth.rb +964 -0
  11. data/lib/kitabu/syntax.rb +126 -0
  12. data/lib/kitabu/tasks.rb +113 -0
  13. data/lib/kitabu/templates.rb +54 -0
  14. data/lib/kitabu/toc.rb +51 -0
  15. data/lib/kitabu/vendor/colorize/colorize.rb +81 -0
  16. data/lib/kitabu/vendor/ruby1.8/plist/plist.rb +22 -0
  17. data/lib/kitabu/vendor/ruby1.8/plist/plist/generator.rb +224 -0
  18. data/lib/kitabu/vendor/ruby1.8/plist/plist/parser.rb +224 -0
  19. data/lib/kitabu/vendor/ruby1.8/textpow/textpow.rb +10 -0
  20. data/lib/kitabu/vendor/ruby1.8/textpow/textpow/debug_processor.rb +36 -0
  21. data/lib/kitabu/vendor/ruby1.8/textpow/textpow/score_manager.rb +65 -0
  22. data/lib/kitabu/vendor/ruby1.8/textpow/textpow/syntax.rb +284 -0
  23. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/active4d.render +140 -0
  24. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/all_hallows_eve.render +104 -0
  25. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/amy.render +179 -0
  26. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/blackboard.render +119 -0
  27. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/brilliance_black.render +560 -0
  28. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/brilliance_dull.render +569 -0
  29. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/cobalt.render +170 -0
  30. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/dawn.render +134 -0
  31. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/eiffel.render +140 -0
  32. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/espresso_libre.render +131 -0
  33. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/active4d.css +114 -0
  34. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/all_hallows_eve.css +72 -0
  35. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/amy.css +147 -0
  36. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/blackboard.css +88 -0
  37. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/brilliance_black.css +605 -0
  38. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/brilliance_dull.css +599 -0
  39. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/cobalt.css +149 -0
  40. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/dawn.css +121 -0
  41. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/eiffel.css +121 -0
  42. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/espresso_libre.css +109 -0
  43. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/idle.css +62 -0
  44. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/iplastic.css +80 -0
  45. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/lazy.css +73 -0
  46. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/mac_classic.css +123 -0
  47. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/magicwb_amiga.css +104 -0
  48. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/pastels_on_dark.css +188 -0
  49. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/slush_poppies.css +85 -0
  50. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/spacecadet.css +51 -0
  51. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/sunburst.css +180 -0
  52. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/twilight.css +137 -0
  53. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/files/css/zenburnesque.css +91 -0
  54. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/idle.render +101 -0
  55. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/iplastic.render +107 -0
  56. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/lazy.render +104 -0
  57. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/mac_classic.render +143 -0
  58. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/magicwb_amiga.render +125 -0
  59. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/pastels_on_dark.render +212 -0
  60. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/slush_poppies.render +131 -0
  61. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/spacecadet.render +89 -0
  62. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/sunburst.render +194 -0
  63. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/twilight.render +161 -0
  64. data/lib/kitabu/vendor/ruby1.8/uv/render/xhtml/zenburnesque.render +134 -0
  65. data/lib/kitabu/vendor/ruby1.8/uv/syntax/actionscript.syntax +97 -0
  66. data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d.syntax +276 -0
  67. data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d_html.syntax +311 -0
  68. data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d_ini.syntax +50 -0
  69. data/lib/kitabu/vendor/ruby1.8/uv/syntax/active4d_library.syntax +21 -0
  70. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ada.syntax +33 -0
  71. data/lib/kitabu/vendor/ruby1.8/uv/syntax/antlr.syntax +151 -0
  72. data/lib/kitabu/vendor/ruby1.8/uv/syntax/apache.syntax +191 -0
  73. data/lib/kitabu/vendor/ruby1.8/uv/syntax/applescript.syntax +384 -0
  74. data/lib/kitabu/vendor/ruby1.8/uv/syntax/asp.syntax +70 -0
  75. data/lib/kitabu/vendor/ruby1.8/uv/syntax/asp_vb.net.syntax +129 -0
  76. data/lib/kitabu/vendor/ruby1.8/uv/syntax/bibtex.syntax +151 -0
  77. data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_html.syntax +41 -0
  78. data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_markdown.syntax +42 -0
  79. data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_text.syntax +27 -0
  80. data/lib/kitabu/vendor/ruby1.8/uv/syntax/blog_textile.syntax +27 -0
  81. data/lib/kitabu/vendor/ruby1.8/uv/syntax/buggy/nemerle.syntax +74 -0
  82. data/lib/kitabu/vendor/ruby1.8/uv/syntax/build.syntax +53 -0
  83. data/lib/kitabu/vendor/ruby1.8/uv/syntax/bulletin_board.syntax +287 -0
  84. data/lib/kitabu/vendor/ruby1.8/uv/syntax/c++.syntax +109 -0
  85. data/lib/kitabu/vendor/ruby1.8/uv/syntax/c.syntax +326 -0
  86. data/lib/kitabu/vendor/ruby1.8/uv/syntax/cake.syntax +55 -0
  87. data/lib/kitabu/vendor/ruby1.8/uv/syntax/camlp4.syntax +36 -0
  88. data/lib/kitabu/vendor/ruby1.8/uv/syntax/cm.syntax +32 -0
  89. data/lib/kitabu/vendor/ruby1.8/uv/syntax/coldfusion.syntax +119 -0
  90. data/lib/kitabu/vendor/ruby1.8/uv/syntax/context_free.syntax +176 -0
  91. data/lib/kitabu/vendor/ruby1.8/uv/syntax/cs.syntax +59 -0
  92. data/lib/kitabu/vendor/ruby1.8/uv/syntax/css.syntax +195 -0
  93. data/lib/kitabu/vendor/ruby1.8/uv/syntax/css_experimental.syntax +1925 -0
  94. data/lib/kitabu/vendor/ruby1.8/uv/syntax/csv.syntax +68 -0
  95. data/lib/kitabu/vendor/ruby1.8/uv/syntax/d.syntax +142 -0
  96. data/lib/kitabu/vendor/ruby1.8/uv/syntax/diff.syntax +81 -0
  97. data/lib/kitabu/vendor/ruby1.8/uv/syntax/dokuwiki.syntax +204 -0
  98. data/lib/kitabu/vendor/ruby1.8/uv/syntax/dot.syntax +47 -0
  99. data/lib/kitabu/vendor/ruby1.8/uv/syntax/doxygen.syntax +43 -0
  100. data/lib/kitabu/vendor/ruby1.8/uv/syntax/dylan.syntax +62 -0
  101. data/lib/kitabu/vendor/ruby1.8/uv/syntax/eiffel.syntax +78 -0
  102. data/lib/kitabu/vendor/ruby1.8/uv/syntax/erlang.syntax +922 -0
  103. data/lib/kitabu/vendor/ruby1.8/uv/syntax/f-script.syntax +80 -0
  104. data/lib/kitabu/vendor/ruby1.8/uv/syntax/fortran.syntax +141 -0
  105. data/lib/kitabu/vendor/ruby1.8/uv/syntax/fxscript.syntax +142 -0
  106. data/lib/kitabu/vendor/ruby1.8/uv/syntax/greasemonkey.syntax +34 -0
  107. data/lib/kitabu/vendor/ruby1.8/uv/syntax/gri.syntax +83 -0
  108. data/lib/kitabu/vendor/ruby1.8/uv/syntax/groovy.syntax +191 -0
  109. data/lib/kitabu/vendor/ruby1.8/uv/syntax/gtd.syntax +22 -0
  110. data/lib/kitabu/vendor/ruby1.8/uv/syntax/gtdalt.syntax +143 -0
  111. data/lib/kitabu/vendor/ruby1.8/uv/syntax/haml.syntax +88 -0
  112. data/lib/kitabu/vendor/ruby1.8/uv/syntax/haskell.syntax +88 -0
  113. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html-asp.syntax +27 -0
  114. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html.syntax +362 -0
  115. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_django.syntax +36 -0
  116. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_for_asp.net.syntax +424 -0
  117. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_mason.syntax +119 -0
  118. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_rails.syntax +40 -0
  119. data/lib/kitabu/vendor/ruby1.8/uv/syntax/html_tcl.syntax +26 -0
  120. data/lib/kitabu/vendor/ruby1.8/uv/syntax/icalendar.syntax +32 -0
  121. data/lib/kitabu/vendor/ruby1.8/uv/syntax/inform.syntax +48 -0
  122. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ini.syntax +55 -0
  123. data/lib/kitabu/vendor/ruby1.8/uv/syntax/installer_distribution_script.syntax +77 -0
  124. data/lib/kitabu/vendor/ruby1.8/uv/syntax/io.syntax +81 -0
  125. data/lib/kitabu/vendor/ruby1.8/uv/syntax/java.syntax +211 -0
  126. data/lib/kitabu/vendor/ruby1.8/uv/syntax/javaproperties.syntax +20 -0
  127. data/lib/kitabu/vendor/ruby1.8/uv/syntax/javascript.syntax +256 -0
  128. data/lib/kitabu/vendor/ruby1.8/uv/syntax/javascript_+_prototype.syntax +72 -0
  129. data/lib/kitabu/vendor/ruby1.8/uv/syntax/javascript_+_prototype_bracketed.syntax +140 -0
  130. data/lib/kitabu/vendor/ruby1.8/uv/syntax/jquery_javascript.syntax +114 -0
  131. data/lib/kitabu/vendor/ruby1.8/uv/syntax/json.syntax +136 -0
  132. data/lib/kitabu/vendor/ruby1.8/uv/syntax/languagedefinition.syntax +708 -0
  133. data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex.syntax +566 -0
  134. data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex_beamer.syntax +41 -0
  135. data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex_log.syntax +50 -0
  136. data/lib/kitabu/vendor/ruby1.8/uv/syntax/latex_memoir.syntax +64 -0
  137. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lexflex.syntax +219 -0
  138. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lighttpd.syntax +54 -0
  139. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lilypond.syntax +492 -0
  140. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lisp.syntax +61 -0
  141. data/lib/kitabu/vendor/ruby1.8/uv/syntax/literate_haskell.syntax +24 -0
  142. data/lib/kitabu/vendor/ruby1.8/uv/syntax/logo.syntax +29 -0
  143. data/lib/kitabu/vendor/ruby1.8/uv/syntax/logtalk.syntax +152 -0
  144. data/lib/kitabu/vendor/ruby1.8/uv/syntax/lua.syntax +86 -0
  145. data/lib/kitabu/vendor/ruby1.8/uv/syntax/m.syntax +142 -0
  146. data/lib/kitabu/vendor/ruby1.8/uv/syntax/macports_portfile.syntax +163 -0
  147. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mail.syntax +118 -0
  148. data/lib/kitabu/vendor/ruby1.8/uv/syntax/makefile.syntax +36 -0
  149. data/lib/kitabu/vendor/ruby1.8/uv/syntax/man.syntax +17 -0
  150. data/lib/kitabu/vendor/ruby1.8/uv/syntax/markdown.syntax +543 -0
  151. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mediawiki.syntax +567 -0
  152. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mel.syntax +92 -0
  153. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mips.syntax +66 -0
  154. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mod_perl.syntax +50 -0
  155. data/lib/kitabu/vendor/ruby1.8/uv/syntax/modula-3.syntax +47 -0
  156. data/lib/kitabu/vendor/ruby1.8/uv/syntax/moinmoin.syntax +189 -0
  157. data/lib/kitabu/vendor/ruby1.8/uv/syntax/mootools.syntax +572 -0
  158. data/lib/kitabu/vendor/ruby1.8/uv/syntax/movable_type.syntax +162 -0
  159. data/lib/kitabu/vendor/ruby1.8/uv/syntax/multimarkdown.syntax +39 -0
  160. data/lib/kitabu/vendor/ruby1.8/uv/syntax/objective-c++.syntax +18 -0
  161. data/lib/kitabu/vendor/ruby1.8/uv/syntax/objective-c.syntax +233 -0
  162. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ocaml.syntax +764 -0
  163. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ocamllex.syntax +167 -0
  164. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ocamlyacc.syntax +184 -0
  165. data/lib/kitabu/vendor/ruby1.8/uv/syntax/old/YAML.yaml +160 -0
  166. data/lib/kitabu/vendor/ruby1.8/uv/syntax/old/txt2tags.yaml +139 -0
  167. data/lib/kitabu/vendor/ruby1.8/uv/syntax/opengl.syntax +14 -0
  168. data/lib/kitabu/vendor/ruby1.8/uv/syntax/pascal.syntax +77 -0
  169. data/lib/kitabu/vendor/ruby1.8/uv/syntax/perl.syntax +1115 -0
  170. data/lib/kitabu/vendor/ruby1.8/uv/syntax/php.syntax +1253 -0
  171. data/lib/kitabu/vendor/ruby1.8/uv/syntax/plain_text.syntax +32 -0
  172. data/lib/kitabu/vendor/ruby1.8/uv/syntax/pmwiki.syntax +113 -0
  173. data/lib/kitabu/vendor/ruby1.8/uv/syntax/postscript.syntax +114 -0
  174. data/lib/kitabu/vendor/ruby1.8/uv/syntax/processing.syntax +106 -0
  175. data/lib/kitabu/vendor/ruby1.8/uv/syntax/prolog.syntax +40 -0
  176. data/lib/kitabu/vendor/ruby1.8/uv/syntax/property_list.syntax +635 -0
  177. data/lib/kitabu/vendor/ruby1.8/uv/syntax/python.syntax +868 -0
  178. data/lib/kitabu/vendor/ruby1.8/uv/syntax/python_django.syntax +21 -0
  179. data/lib/kitabu/vendor/ruby1.8/uv/syntax/qmake_project.syntax +114 -0
  180. data/lib/kitabu/vendor/ruby1.8/uv/syntax/qt_c++.syntax +26 -0
  181. data/lib/kitabu/vendor/ruby1.8/uv/syntax/quake3_config.syntax +32 -0
  182. data/lib/kitabu/vendor/ruby1.8/uv/syntax/r.syntax +81 -0
  183. data/lib/kitabu/vendor/ruby1.8/uv/syntax/r_console.syntax +16 -0
  184. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ragel.syntax +201 -0
  185. data/lib/kitabu/vendor/ruby1.8/uv/syntax/rd_r_documentation.syntax +91 -0
  186. data/lib/kitabu/vendor/ruby1.8/uv/syntax/regexp.syntax +50 -0
  187. data/lib/kitabu/vendor/ruby1.8/uv/syntax/regular_expressions_oniguruma.syntax +107 -0
  188. data/lib/kitabu/vendor/ruby1.8/uv/syntax/regular_expressions_python.syntax +109 -0
  189. data/lib/kitabu/vendor/ruby1.8/uv/syntax/release_notes.syntax +46 -0
  190. data/lib/kitabu/vendor/ruby1.8/uv/syntax/remind.syntax +253 -0
  191. data/lib/kitabu/vendor/ruby1.8/uv/syntax/restructuredtext.syntax +250 -0
  192. data/lib/kitabu/vendor/ruby1.8/uv/syntax/rez.syntax +80 -0
  193. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ruby.syntax +1035 -0
  194. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ruby_experimental.syntax +145 -0
  195. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ruby_on_rails.syntax +88 -0
  196. data/lib/kitabu/vendor/ruby1.8/uv/syntax/s5.syntax +69 -0
  197. data/lib/kitabu/vendor/ruby1.8/uv/syntax/scheme.syntax +347 -0
  198. data/lib/kitabu/vendor/ruby1.8/uv/syntax/scilab.syntax +41 -0
  199. data/lib/kitabu/vendor/ruby1.8/uv/syntax/setext.syntax +147 -0
  200. data/lib/kitabu/vendor/ruby1.8/uv/syntax/shell-unix-generic.syntax +384 -0
  201. data/lib/kitabu/vendor/ruby1.8/uv/syntax/slate.syntax +149 -0
  202. data/lib/kitabu/vendor/ruby1.8/uv/syntax/smarty.syntax +63 -0
  203. data/lib/kitabu/vendor/ruby1.8/uv/syntax/sql.syntax +237 -0
  204. data/lib/kitabu/vendor/ruby1.8/uv/syntax/sql_rails.syntax +18 -0
  205. data/lib/kitabu/vendor/ruby1.8/uv/syntax/ssh-config.syntax +33 -0
  206. data/lib/kitabu/vendor/ruby1.8/uv/syntax/standard_ml.syntax +121 -0
  207. data/lib/kitabu/vendor/ruby1.8/uv/syntax/strings_file.syntax +39 -0
  208. data/lib/kitabu/vendor/ruby1.8/uv/syntax/subversion_commit_message.syntax +36 -0
  209. data/lib/kitabu/vendor/ruby1.8/uv/syntax/sweave.syntax +84 -0
  210. data/lib/kitabu/vendor/ruby1.8/uv/syntax/swig.syntax +57 -0
  211. data/lib/kitabu/vendor/ruby1.8/uv/syntax/tcl.syntax +152 -0
  212. data/lib/kitabu/vendor/ruby1.8/uv/syntax/template_toolkit.syntax +121 -0
  213. data/lib/kitabu/vendor/ruby1.8/uv/syntax/tex.syntax +86 -0
  214. data/lib/kitabu/vendor/ruby1.8/uv/syntax/tex_math.syntax +49 -0
  215. data/lib/kitabu/vendor/ruby1.8/uv/syntax/textile.syntax +215 -0
  216. data/lib/kitabu/vendor/ruby1.8/uv/syntax/tsv.syntax +50 -0
  217. data/lib/kitabu/vendor/ruby1.8/uv/syntax/twiki.syntax +241 -0
  218. data/lib/kitabu/vendor/ruby1.8/uv/syntax/txt2tags.syntax +79 -0
  219. data/lib/kitabu/vendor/ruby1.8/uv/syntax/vectorscript.syntax +57 -0
  220. data/lib/kitabu/vendor/ruby1.8/uv/syntax/xhtml_1.0.syntax +4027 -0
  221. data/lib/kitabu/vendor/ruby1.8/uv/syntax/xml.syntax +180 -0
  222. data/lib/kitabu/vendor/ruby1.8/uv/syntax/xml_strict.syntax +92 -0
  223. data/lib/kitabu/vendor/ruby1.8/uv/syntax/xsl.syntax +60 -0
  224. data/lib/kitabu/vendor/ruby1.8/uv/syntax/yaml.syntax +160 -0
  225. data/lib/kitabu/vendor/ruby1.8/uv/syntax/yui_javascript.syntax +176 -0
  226. data/lib/kitabu/vendor/ruby1.8/uv/uv.rb +88 -0
  227. data/lib/kitabu/vendor/ruby1.8/uv/uv/render_processor.rb +131 -0
  228. data/lib/kitabu/vendor/ruby1.8/uv/uv/utility.rb +67 -0
  229. data/lib/kitabu/vendor/ruby1.9/plist/plist.rb +23 -0
  230. data/lib/kitabu/vendor/ruby1.9/plist/plist/generator.rb +228 -0
  231. data/lib/kitabu/vendor/ruby1.9/plist/plist/parser.rb +225 -0
  232. data/lib/kitabu/vendor/ruby1.9/textpow/textpow.rb +10 -0
  233. data/lib/kitabu/vendor/ruby1.9/textpow/textpow/debug_processor.rb +37 -0
  234. data/lib/kitabu/vendor/ruby1.9/textpow/textpow/score_manager.rb +66 -0
  235. data/lib/kitabu/vendor/ruby1.9/textpow/textpow/syntax.rb +286 -0
  236. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/active4d.render +140 -0
  237. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/all_hallows_eve.render +104 -0
  238. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/amy.render +179 -0
  239. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/blackboard.render +119 -0
  240. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/brilliance_black.render +560 -0
  241. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/brilliance_dull.render +569 -0
  242. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/cobalt.render +170 -0
  243. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/dawn.render +134 -0
  244. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/eiffel.render +140 -0
  245. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/espresso_libre.render +131 -0
  246. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/active4d.css +114 -0
  247. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/all_hallows_eve.css +72 -0
  248. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/amy.css +147 -0
  249. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/blackboard.css +88 -0
  250. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/brilliance_black.css +605 -0
  251. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/brilliance_dull.css +599 -0
  252. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/cobalt.css +149 -0
  253. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/dawn.css +121 -0
  254. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/eiffel.css +121 -0
  255. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/espresso_libre.css +109 -0
  256. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/idle.css +62 -0
  257. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/iplastic.css +80 -0
  258. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/lazy.css +73 -0
  259. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/mac_classic.css +123 -0
  260. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/magicwb_amiga.css +104 -0
  261. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/pastels_on_dark.css +188 -0
  262. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/slush_poppies.css +85 -0
  263. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/spacecadet.css +51 -0
  264. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/sunburst.css +180 -0
  265. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/twilight.css +137 -0
  266. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/files/css/zenburnesque.css +91 -0
  267. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/idle.render +101 -0
  268. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/iplastic.render +107 -0
  269. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/lazy.render +104 -0
  270. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/mac_classic.render +143 -0
  271. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/magicwb_amiga.render +125 -0
  272. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/pastels_on_dark.render +212 -0
  273. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/slush_poppies.render +131 -0
  274. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/spacecadet.render +89 -0
  275. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/sunburst.render +194 -0
  276. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/twilight.render +161 -0
  277. data/lib/kitabu/vendor/ruby1.9/uv/render/xhtml/zenburnesque.render +134 -0
  278. data/lib/kitabu/vendor/ruby1.9/uv/syntax/actionscript.syntax +97 -0
  279. data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d.syntax +276 -0
  280. data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d_html.syntax +311 -0
  281. data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d_ini.syntax +50 -0
  282. data/lib/kitabu/vendor/ruby1.9/uv/syntax/active4d_library.syntax +21 -0
  283. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ada.syntax +33 -0
  284. data/lib/kitabu/vendor/ruby1.9/uv/syntax/antlr.syntax +151 -0
  285. data/lib/kitabu/vendor/ruby1.9/uv/syntax/apache.syntax +191 -0
  286. data/lib/kitabu/vendor/ruby1.9/uv/syntax/applescript.syntax +384 -0
  287. data/lib/kitabu/vendor/ruby1.9/uv/syntax/asp.syntax +70 -0
  288. data/lib/kitabu/vendor/ruby1.9/uv/syntax/asp_vb.net.syntax +129 -0
  289. data/lib/kitabu/vendor/ruby1.9/uv/syntax/bibtex.syntax +151 -0
  290. data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_html.syntax +41 -0
  291. data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_markdown.syntax +42 -0
  292. data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_text.syntax +27 -0
  293. data/lib/kitabu/vendor/ruby1.9/uv/syntax/blog_textile.syntax +27 -0
  294. data/lib/kitabu/vendor/ruby1.9/uv/syntax/build.syntax +53 -0
  295. data/lib/kitabu/vendor/ruby1.9/uv/syntax/bulletin_board.syntax +287 -0
  296. data/lib/kitabu/vendor/ruby1.9/uv/syntax/cake.syntax +55 -0
  297. data/lib/kitabu/vendor/ruby1.9/uv/syntax/camlp4.syntax +36 -0
  298. data/lib/kitabu/vendor/ruby1.9/uv/syntax/cm.syntax +32 -0
  299. data/lib/kitabu/vendor/ruby1.9/uv/syntax/coldfusion.syntax +119 -0
  300. data/lib/kitabu/vendor/ruby1.9/uv/syntax/context_free.syntax +176 -0
  301. data/lib/kitabu/vendor/ruby1.9/uv/syntax/cs.syntax +59 -0
  302. data/lib/kitabu/vendor/ruby1.9/uv/syntax/css.syntax +195 -0
  303. data/lib/kitabu/vendor/ruby1.9/uv/syntax/css_experimental.syntax +1925 -0
  304. data/lib/kitabu/vendor/ruby1.9/uv/syntax/csv.syntax +68 -0
  305. data/lib/kitabu/vendor/ruby1.9/uv/syntax/d.syntax +142 -0
  306. data/lib/kitabu/vendor/ruby1.9/uv/syntax/diff.syntax +81 -0
  307. data/lib/kitabu/vendor/ruby1.9/uv/syntax/dokuwiki.syntax +204 -0
  308. data/lib/kitabu/vendor/ruby1.9/uv/syntax/dot.syntax +47 -0
  309. data/lib/kitabu/vendor/ruby1.9/uv/syntax/doxygen.syntax +43 -0
  310. data/lib/kitabu/vendor/ruby1.9/uv/syntax/dylan.syntax +62 -0
  311. data/lib/kitabu/vendor/ruby1.9/uv/syntax/eiffel.syntax +78 -0
  312. data/lib/kitabu/vendor/ruby1.9/uv/syntax/erlang.syntax +922 -0
  313. data/lib/kitabu/vendor/ruby1.9/uv/syntax/f-script.syntax +80 -0
  314. data/lib/kitabu/vendor/ruby1.9/uv/syntax/fortran.syntax +141 -0
  315. data/lib/kitabu/vendor/ruby1.9/uv/syntax/fxscript.syntax +142 -0
  316. data/lib/kitabu/vendor/ruby1.9/uv/syntax/greasemonkey.syntax +34 -0
  317. data/lib/kitabu/vendor/ruby1.9/uv/syntax/gri.syntax +83 -0
  318. data/lib/kitabu/vendor/ruby1.9/uv/syntax/groovy.syntax +191 -0
  319. data/lib/kitabu/vendor/ruby1.9/uv/syntax/gtd.syntax +22 -0
  320. data/lib/kitabu/vendor/ruby1.9/uv/syntax/gtdalt.syntax +143 -0
  321. data/lib/kitabu/vendor/ruby1.9/uv/syntax/haml.syntax +88 -0
  322. data/lib/kitabu/vendor/ruby1.9/uv/syntax/haskell.syntax +88 -0
  323. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html-asp.syntax +27 -0
  324. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html.syntax +362 -0
  325. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_django.syntax +36 -0
  326. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_for_asp.net.syntax +424 -0
  327. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_mason.syntax +119 -0
  328. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_rails.syntax +40 -0
  329. data/lib/kitabu/vendor/ruby1.9/uv/syntax/html_tcl.syntax +26 -0
  330. data/lib/kitabu/vendor/ruby1.9/uv/syntax/icalendar.syntax +32 -0
  331. data/lib/kitabu/vendor/ruby1.9/uv/syntax/inform.syntax +48 -0
  332. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ini.syntax +55 -0
  333. data/lib/kitabu/vendor/ruby1.9/uv/syntax/installer_distribution_script.syntax +77 -0
  334. data/lib/kitabu/vendor/ruby1.9/uv/syntax/io.syntax +81 -0
  335. data/lib/kitabu/vendor/ruby1.9/uv/syntax/java.syntax +211 -0
  336. data/lib/kitabu/vendor/ruby1.9/uv/syntax/javaproperties.syntax +20 -0
  337. data/lib/kitabu/vendor/ruby1.9/uv/syntax/javascript.syntax +256 -0
  338. data/lib/kitabu/vendor/ruby1.9/uv/syntax/javascript_+_prototype.syntax +72 -0
  339. data/lib/kitabu/vendor/ruby1.9/uv/syntax/javascript_+_prototype_bracketed.syntax +140 -0
  340. data/lib/kitabu/vendor/ruby1.9/uv/syntax/jquery_javascript.syntax +114 -0
  341. data/lib/kitabu/vendor/ruby1.9/uv/syntax/json.syntax +136 -0
  342. data/lib/kitabu/vendor/ruby1.9/uv/syntax/languagedefinition.syntax +708 -0
  343. data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex.syntax +566 -0
  344. data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex_beamer.syntax +41 -0
  345. data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex_log.syntax +50 -0
  346. data/lib/kitabu/vendor/ruby1.9/uv/syntax/latex_memoir.syntax +64 -0
  347. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lexflex.syntax +219 -0
  348. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lighttpd.syntax +54 -0
  349. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lilypond.syntax +492 -0
  350. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lisp.syntax +61 -0
  351. data/lib/kitabu/vendor/ruby1.9/uv/syntax/literate_haskell.syntax +24 -0
  352. data/lib/kitabu/vendor/ruby1.9/uv/syntax/logo.syntax +29 -0
  353. data/lib/kitabu/vendor/ruby1.9/uv/syntax/logtalk.syntax +152 -0
  354. data/lib/kitabu/vendor/ruby1.9/uv/syntax/lua.syntax +86 -0
  355. data/lib/kitabu/vendor/ruby1.9/uv/syntax/m.syntax +142 -0
  356. data/lib/kitabu/vendor/ruby1.9/uv/syntax/macports_portfile.syntax +163 -0
  357. data/lib/kitabu/vendor/ruby1.9/uv/syntax/makefile.syntax +36 -0
  358. data/lib/kitabu/vendor/ruby1.9/uv/syntax/man.syntax +17 -0
  359. data/lib/kitabu/vendor/ruby1.9/uv/syntax/mediawiki.syntax +567 -0
  360. data/lib/kitabu/vendor/ruby1.9/uv/syntax/mips.syntax +66 -0
  361. data/lib/kitabu/vendor/ruby1.9/uv/syntax/mod_perl.syntax +50 -0
  362. data/lib/kitabu/vendor/ruby1.9/uv/syntax/modula-3.syntax +47 -0
  363. data/lib/kitabu/vendor/ruby1.9/uv/syntax/moinmoin.syntax +189 -0
  364. data/lib/kitabu/vendor/ruby1.9/uv/syntax/mootools.syntax +572 -0
  365. data/lib/kitabu/vendor/ruby1.9/uv/syntax/movable_type.syntax +162 -0
  366. data/lib/kitabu/vendor/ruby1.9/uv/syntax/multimarkdown.syntax +39 -0
  367. data/lib/kitabu/vendor/ruby1.9/uv/syntax/objective-c++.syntax +18 -0
  368. data/lib/kitabu/vendor/ruby1.9/uv/syntax/objective-c.syntax +233 -0
  369. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ocaml.syntax +764 -0
  370. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ocamllex.syntax +167 -0
  371. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ocamlyacc.syntax +184 -0
  372. data/lib/kitabu/vendor/ruby1.9/uv/syntax/opengl.syntax +14 -0
  373. data/lib/kitabu/vendor/ruby1.9/uv/syntax/pascal.syntax +77 -0
  374. data/lib/kitabu/vendor/ruby1.9/uv/syntax/perl.syntax +1115 -0
  375. data/lib/kitabu/vendor/ruby1.9/uv/syntax/plain_text.syntax +32 -0
  376. data/lib/kitabu/vendor/ruby1.9/uv/syntax/postscript.syntax +114 -0
  377. data/lib/kitabu/vendor/ruby1.9/uv/syntax/processing.syntax +106 -0
  378. data/lib/kitabu/vendor/ruby1.9/uv/syntax/prolog.syntax +40 -0
  379. data/lib/kitabu/vendor/ruby1.9/uv/syntax/property_list.syntax +635 -0
  380. data/lib/kitabu/vendor/ruby1.9/uv/syntax/python.syntax +868 -0
  381. data/lib/kitabu/vendor/ruby1.9/uv/syntax/python_django.syntax +21 -0
  382. data/lib/kitabu/vendor/ruby1.9/uv/syntax/qmake_project.syntax +114 -0
  383. data/lib/kitabu/vendor/ruby1.9/uv/syntax/qt_c++.syntax +26 -0
  384. data/lib/kitabu/vendor/ruby1.9/uv/syntax/quake3_config.syntax +32 -0
  385. data/lib/kitabu/vendor/ruby1.9/uv/syntax/r.syntax +81 -0
  386. data/lib/kitabu/vendor/ruby1.9/uv/syntax/r_console.syntax +16 -0
  387. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ragel.syntax +201 -0
  388. data/lib/kitabu/vendor/ruby1.9/uv/syntax/rd_r_documentation.syntax +91 -0
  389. data/lib/kitabu/vendor/ruby1.9/uv/syntax/regexp.syntax +50 -0
  390. data/lib/kitabu/vendor/ruby1.9/uv/syntax/release_notes.syntax +46 -0
  391. data/lib/kitabu/vendor/ruby1.9/uv/syntax/remind.syntax +253 -0
  392. data/lib/kitabu/vendor/ruby1.9/uv/syntax/restructuredtext.syntax +250 -0
  393. data/lib/kitabu/vendor/ruby1.9/uv/syntax/rez.syntax +80 -0
  394. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ruby.syntax +1035 -0
  395. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ruby_experimental.syntax +145 -0
  396. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ruby_on_rails.syntax +88 -0
  397. data/lib/kitabu/vendor/ruby1.9/uv/syntax/s5.syntax +69 -0
  398. data/lib/kitabu/vendor/ruby1.9/uv/syntax/scheme.syntax +347 -0
  399. data/lib/kitabu/vendor/ruby1.9/uv/syntax/scilab.syntax +41 -0
  400. data/lib/kitabu/vendor/ruby1.9/uv/syntax/setext.syntax +147 -0
  401. data/lib/kitabu/vendor/ruby1.9/uv/syntax/shell-unix-generic.syntax +384 -0
  402. data/lib/kitabu/vendor/ruby1.9/uv/syntax/slate.syntax +149 -0
  403. data/lib/kitabu/vendor/ruby1.9/uv/syntax/sql.syntax +237 -0
  404. data/lib/kitabu/vendor/ruby1.9/uv/syntax/sql_rails.syntax +18 -0
  405. data/lib/kitabu/vendor/ruby1.9/uv/syntax/ssh-config.syntax +33 -0
  406. data/lib/kitabu/vendor/ruby1.9/uv/syntax/standard_ml.syntax +121 -0
  407. data/lib/kitabu/vendor/ruby1.9/uv/syntax/strings_file.syntax +39 -0
  408. data/lib/kitabu/vendor/ruby1.9/uv/syntax/subversion_commit_message.syntax +36 -0
  409. data/lib/kitabu/vendor/ruby1.9/uv/syntax/sweave.syntax +84 -0
  410. data/lib/kitabu/vendor/ruby1.9/uv/syntax/swig.syntax +57 -0
  411. data/lib/kitabu/vendor/ruby1.9/uv/syntax/tcl.syntax +152 -0
  412. data/lib/kitabu/vendor/ruby1.9/uv/syntax/template_toolkit.syntax +121 -0
  413. data/lib/kitabu/vendor/ruby1.9/uv/syntax/tex.syntax +86 -0
  414. data/lib/kitabu/vendor/ruby1.9/uv/syntax/tex_math.syntax +49 -0
  415. data/lib/kitabu/vendor/ruby1.9/uv/syntax/textile.syntax +215 -0
  416. data/lib/kitabu/vendor/ruby1.9/uv/syntax/tsv.syntax +50 -0
  417. data/lib/kitabu/vendor/ruby1.9/uv/syntax/twiki.syntax +241 -0
  418. data/lib/kitabu/vendor/ruby1.9/uv/syntax/txt2tags.syntax +79 -0
  419. data/lib/kitabu/vendor/ruby1.9/uv/syntax/vectorscript.syntax +57 -0
  420. data/lib/kitabu/vendor/ruby1.9/uv/syntax/xhtml_1.0.syntax +4027 -0
  421. data/lib/kitabu/vendor/ruby1.9/uv/syntax/xml.syntax +180 -0
  422. data/lib/kitabu/vendor/ruby1.9/uv/syntax/xml_strict.syntax +92 -0
  423. data/lib/kitabu/vendor/ruby1.9/uv/syntax/xsl.syntax +60 -0
  424. data/lib/kitabu/vendor/ruby1.9/uv/syntax/yaml.syntax +160 -0
  425. data/lib/kitabu/vendor/ruby1.9/uv/syntax/yui_javascript.syntax +176 -0
  426. data/lib/kitabu/vendor/ruby1.9/uv/uv.rb +89 -0
  427. data/lib/kitabu/vendor/ruby1.9/uv/uv/render_processor.rb +132 -0
  428. data/lib/kitabu/vendor/ruby1.9/uv/uv/utility.rb +68 -0
  429. data/spec/exit_matcher.rb +45 -0
  430. data/spec/fixtures/rails-guides/code/sample.rb +7 -0
  431. data/spec/kitabu/base_spec.rb +159 -0
  432. data/spec/kitabu/blackcloth_spec.rb +36 -0
  433. data/spec/kitabu/bug_fix_spec.rb +25 -0
  434. data/spec/kitabu/command_spec.rb +82 -0
  435. data/spec/kitabu/syntax_spec.rb +90 -0
  436. data/spec/kitabu/toc_spec.rb +79 -0
  437. data/spec/spec_helper.rb +30 -0
  438. data/templates/Rakefile +3 -0
  439. data/templates/config.yml +9 -0
  440. data/templates/layouts/boom/layout.css +469 -0
  441. data/templates/layouts/boom/layout.html +37 -0
  442. data/templates/syntax.css +1065 -0
  443. data/templates/themes/active4d.css +114 -0
  444. data/templates/themes/blackboard.css +88 -0
  445. data/templates/themes/dawn.css +121 -0
  446. data/templates/themes/eiffel.css +121 -0
  447. data/templates/themes/idle.css +62 -0
  448. data/templates/themes/iplastic.css +80 -0
  449. data/templates/themes/lazy.css +73 -0
  450. data/templates/themes/mac_classic.css +123 -0
  451. data/templates/themes/slush_poppies.css +85 -0
  452. data/templates/themes/sunburst.css +180 -0
  453. data/templates/user.css +1 -0
  454. metadata +518 -0
@@ -0,0 +1,37 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2
+ "http://www.w3.org/TR/html4/strict.dtd">
3
+ <html>
4
+ <head>
5
+ <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
6
+ <link rel="stylesheet" type="text/css" href="../templates/layout.css"/>
7
+ <link rel="stylesheet" type="text/css" href="../templates/syntax.css"/>
8
+ <link rel="stylesheet" type="text/css" href="../templates/user.css"/>
9
+
10
+ <meta name="author" content="<%= authors.join(', ') %>" />
11
+ <meta name="subject" content="<%= subject %>" />
12
+ <meta name="keywords" content="<%= keywords %>" />
13
+ </head>
14
+ <body>
15
+ <div class="frontcover"></div>
16
+ <div class="halftitlepage">
17
+ <h1 class="no-toc"><%= title %></h1>
18
+ </div>
19
+
20
+ <div class="titlepage">
21
+ <h1 class="no-toc"><%= title %></h1>
22
+ <p class="no-toc"><%= authors.join('<br/>') %></p>
23
+ </div>
24
+
25
+ <div class="imprint">
26
+ <p><%= copyright %></p>
27
+ </div>
28
+
29
+ <div class="chapters">
30
+ <%= contents %>
31
+ </div>
32
+
33
+ <div class="white_page"></div>
34
+ <div class="white_page"></div>
35
+ <div class="backcover"></div>
36
+ </body>
37
+ </html>
@@ -0,0 +1,1065 @@
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
+ }
115
+
116
+
117
+ pre.blackboard .LatexSupport {
118
+ color: #FBDE2D;
119
+ }
120
+ pre.blackboard .OcamlInfixOperator {
121
+ color: #8DA6CE;
122
+ }
123
+ pre.blackboard .MetaFunctionCallPy {
124
+ color: #BECDE6;
125
+ }
126
+ pre.blackboard .Superclass {
127
+ color: #FF6400;
128
+ font-style: italic;
129
+ }
130
+ pre.blackboard .Constant {
131
+ color: #D8FA3C;
132
+ }
133
+ pre.blackboard {
134
+ background-color: #0C1021;
135
+ color: #F8F8F8;
136
+ }
137
+ pre.blackboard .OcamlFPConstant {
138
+ text-decoration: underline;
139
+ }
140
+ pre.blackboard .OcamlFPInfixOperator {
141
+ text-decoration: underline;
142
+ }
143
+ pre.blackboard .Support {
144
+ color: #8DA6CE;
145
+ }
146
+ pre.blackboard .OcamlOperator {
147
+ color: #F8F8F8;
148
+ }
149
+ pre.blackboard .Storage {
150
+ color: #FBDE2D;
151
+ }
152
+ pre.blackboard .line-numbers {
153
+ background-color: #253B76;
154
+ color: #FFFFFF;
155
+ }
156
+ pre.blackboard .StringInterpolation {
157
+ color: #FF6400;
158
+ }
159
+ pre.blackboard .InvalidIllegal {
160
+ background-color: #9D1E15;
161
+ color: #F8F8F8;
162
+ }
163
+ pre.blackboard .PlistUnquotedString {
164
+ color: #FFFFFF;
165
+ }
166
+ pre.blackboard .OcamlVariant {
167
+ color: #D5E0F3;
168
+ }
169
+ pre.blackboard .MetaTag {
170
+ color: #7F90AA;
171
+ }
172
+ pre.blackboard .LatexEnvironment {
173
+ background-color: #F7F7F8;
174
+ }
175
+ pre.blackboard .OcamlFPPrefixOperator {
176
+ text-decoration: underline;
177
+ }
178
+ pre.blackboard .OcamlPrefixOperator {
179
+ color: #8DA6CE;
180
+ }
181
+ pre.blackboard .EntityNameSection {
182
+ color: #FFFFFF;
183
+ }
184
+ pre.blackboard .String {
185
+ color: #61CE3C;
186
+ }
187
+ pre.blackboard .Keyword {
188
+ color: #FBDE2D;
189
+ }
190
+ pre.blackboard .LatexEnvironmentNested {
191
+ background-color: #7691F3;
192
+ }
193
+ pre.blackboard .InvalidDeprecated {
194
+ color: #AB2A1D;
195
+ font-style: italic;
196
+ }
197
+ pre.blackboard .Variable {
198
+ }
199
+ pre.blackboard .Entity {
200
+ color: #FF6400;
201
+ }
202
+ pre.blackboard .Comment {
203
+ color: #AEAEAE;
204
+ }
205
+
206
+
207
+ pre.dawn .MetaSeparator {
208
+ font-weight: bold;
209
+ background-color: #DCDCDC;
210
+ color: #19356D;
211
+ }
212
+ pre.dawn .SupportVariable {
213
+ color: #234A97;
214
+ }
215
+ pre.dawn .Constant {
216
+ font-weight: bold;
217
+ color: #811F24;
218
+ }
219
+ pre.dawn .EmbeddedSource {
220
+ background-color: #829AC2;
221
+ }
222
+ pre.dawn .StringRegexpConstantCharacterEscape {
223
+ font-weight: bold;
224
+ color: #811F24;
225
+ }
226
+ pre.dawn .Support {
227
+ color: #691C97;
228
+ }
229
+ pre.dawn .MarkupList {
230
+ color: #693A17;
231
+ }
232
+ pre.dawn .Storage {
233
+ color: #A71D5D;
234
+ font-style: italic;
235
+ }
236
+ pre.dawn .line-numbers {
237
+ background-color: #7496CF;
238
+ color: #000000;
239
+ }
240
+ pre.dawn .StringConstant {
241
+ font-weight: bold;
242
+ color: #696969;
243
+ }
244
+ pre.dawn .MarkupUnderline {
245
+ text-decoration: underline;
246
+ color: #080808;
247
+ }
248
+ pre.dawn .MarkupHeading {
249
+ font-weight: bold;
250
+ color: #19356D;
251
+ }
252
+ pre.dawn .SupportConstant {
253
+ color: #B4371F;
254
+ }
255
+ pre.dawn .MarkupQuote {
256
+ background-color: #C5C5C5;
257
+ color: #0B6125;
258
+ font-style: italic;
259
+ }
260
+ pre.dawn .StringRegexpSpecial {
261
+ font-weight: bold;
262
+ color: #CF5628;
263
+ }
264
+ pre.dawn .InvalidIllegal {
265
+ background-color: #B52A1D;
266
+ color: #F8F8F8;
267
+ font-style: italic;
268
+ }
269
+ pre.dawn .MarkupDeleted {
270
+ color: #B52A1D;
271
+ }
272
+ pre.dawn .MarkupRaw {
273
+ background-color: #C5C5C5;
274
+ color: #234A97;
275
+ }
276
+ pre.dawn .SupportFunction {
277
+ color: #693A17;
278
+ }
279
+ pre.dawn .PunctuationSeparator {
280
+ color: #794938;
281
+ }
282
+ pre.dawn .StringRegexp {
283
+ color: #CF5628;
284
+ }
285
+ pre.dawn .StringEmbeddedSource {
286
+ background-color: #829AC2;
287
+ color: #080808;
288
+ }
289
+ pre.dawn .MarkupLink {
290
+ color: #234A97;
291
+ font-style: italic;
292
+ }
293
+ pre.dawn .MarkupBold {
294
+ font-weight: bold;
295
+ color: #080808;
296
+ }
297
+ pre.dawn .StringVariable {
298
+ color: #234A97;
299
+ }
300
+ pre.dawn .String {
301
+ color: #0B6125;
302
+ }
303
+ pre.dawn .Keyword {
304
+ color: #794938;
305
+ }
306
+ pre.dawn {
307
+ background-color: #F5F5F5;
308
+ color: #080808;
309
+ }
310
+ pre.dawn .MarkupItalic {
311
+ color: #080808;
312
+ font-style: italic;
313
+ }
314
+ pre.dawn .InvalidDeprecated {
315
+ font-weight: bold;
316
+ color: #B52A1D;
317
+ }
318
+ pre.dawn .Variable {
319
+ color: #234A97;
320
+ }
321
+ pre.dawn .Entity {
322
+ color: #BF4F24;
323
+ }
324
+ pre.dawn .Comment {
325
+ color: #5A525F;
326
+ font-style: italic;
327
+ }
328
+
329
+
330
+ pre.eiffel .EmbeddedSource {
331
+ background-color: #6597F6;
332
+ }
333
+ pre.eiffel .LibraryObject {
334
+ font-weight: bold;
335
+ color: #6D79DE;
336
+ }
337
+ pre.eiffel .Section {
338
+ font-style: italic;
339
+ }
340
+ pre.eiffel .FunctionArgumentAndResultTypes {
341
+ color: #70727E;
342
+ }
343
+ pre.eiffel .TypeName {
344
+ font-style: italic;
345
+ }
346
+ pre.eiffel .Number {
347
+ color: #CD0000;
348
+ font-style: italic;
349
+ }
350
+ pre.eiffel .MarkupList {
351
+ color: #B90690;
352
+ }
353
+ pre.eiffel .MarkupTagAttribute {
354
+ font-style: italic;
355
+ }
356
+ pre.eiffel .LibraryVariable {
357
+ font-weight: bold;
358
+ color: #21439C;
359
+ }
360
+ pre.eiffel .line-numbers {
361
+ background-color: #C3DCFF;
362
+ color: #000000;
363
+ }
364
+ pre.eiffel .FunctionParameter {
365
+ font-style: italic;
366
+ }
367
+ pre.eiffel .MarkupTag {
368
+ color: #1C02FF;
369
+ }
370
+ pre.eiffel {
371
+ background-color: #FFFFFF;
372
+ color: #000000;
373
+ }
374
+ pre.eiffel .MarkupHeading {
375
+ font-weight: bold;
376
+ color: #0C07FF;
377
+ }
378
+ pre.eiffel .JsOperator {
379
+ color: #687687;
380
+ }
381
+ pre.eiffel .InheritedClassName {
382
+ font-style: italic;
383
+ }
384
+ pre.eiffel .StringInterpolation {
385
+ color: #26B31A;
386
+ }
387
+ pre.eiffel .MarkupQuote {
388
+ color: #000000;
389
+ font-style: italic;
390
+ }
391
+ pre.eiffel .MarkupNameOfTag {
392
+ font-weight: bold;
393
+ }
394
+ pre.eiffel .InvalidTrailingWhitespace {
395
+ background-color: #FFD0D0;
396
+ }
397
+ pre.eiffel .LibraryConstant {
398
+ font-weight: bold;
399
+ color: #06960E;
400
+ }
401
+ pre.eiffel .MarkupXmlDeclaration {
402
+ color: #68685B;
403
+ }
404
+ pre.eiffel .PreprocessorDirective {
405
+ font-weight: bold;
406
+ color: #0C450D;
407
+ }
408
+ pre.eiffel .BuiltInConstant {
409
+ color: #585CF6;
410
+ font-style: italic;
411
+ }
412
+ pre.eiffel .MarkupDtd {
413
+ font-style: italic;
414
+ }
415
+ pre.eiffel .Invalid {
416
+ background-color: #990000;
417
+ color: #FFFFFF;
418
+ }
419
+ pre.eiffel .LibraryFunction {
420
+ font-weight: bold;
421
+ color: #3C4C72;
422
+ }
423
+ pre.eiffel .String {
424
+ color: #D80800;
425
+ }
426
+ pre.eiffel .UserDefinedConstant {
427
+ color: #C5060B;
428
+ font-style: italic;
429
+ }
430
+ pre.eiffel .Keyword {
431
+ font-weight: bold;
432
+ color: #0100B6;
433
+ }
434
+ pre.eiffel .MarkupDoctype {
435
+ color: #888888;
436
+ }
437
+ pre.eiffel .FunctionName {
438
+ font-weight: bold;
439
+ color: #0000A2;
440
+ }
441
+ pre.eiffel .PreprocessorLine {
442
+ color: #1A921C;
443
+ }
444
+ pre.eiffel .Variable {
445
+ color: #0206FF;
446
+ font-style: italic;
447
+ }
448
+ pre.eiffel .Comment {
449
+ color: #00B418;
450
+ }
451
+
452
+
453
+ pre.idle .InheritedClass {
454
+ }
455
+ pre.idle .TypeName {
456
+ color: #21439C;
457
+ }
458
+ pre.idle .Number {
459
+ }
460
+ pre.idle .LibraryVariable {
461
+ color: #A535AE;
462
+ }
463
+ pre.idle .Storage {
464
+ color: #FF5600;
465
+ }
466
+ pre.idle .line-numbers {
467
+ background-color: #BAD6FD;
468
+ color: #000000;
469
+ }
470
+ pre.idle {
471
+ background-color: #FFFFFF;
472
+ color: #000000;
473
+ }
474
+ pre.idle .StringInterpolation {
475
+ color: #990000;
476
+ }
477
+ pre.idle .TagName {
478
+ }
479
+ pre.idle .LibraryConstant {
480
+ color: #A535AE;
481
+ }
482
+ pre.idle .FunctionArgument {
483
+ }
484
+ pre.idle .BuiltInConstant {
485
+ color: #A535AE;
486
+ }
487
+ pre.idle .Invalid {
488
+ background-color: #990000;
489
+ color: #FFFFFF;
490
+ }
491
+ pre.idle .LibraryClassType {
492
+ color: #A535AE;
493
+ }
494
+ pre.idle .LibraryFunction {
495
+ color: #A535AE;
496
+ }
497
+ pre.idle .TagAttribute {
498
+ }
499
+ pre.idle .Keyword {
500
+ color: #FF5600;
501
+ }
502
+ pre.idle .UserDefinedConstant {
503
+ }
504
+ pre.idle .String {
505
+ color: #00A33F;
506
+ }
507
+ pre.idle .FunctionName {
508
+ color: #21439C;
509
+ }
510
+ pre.idle .Variable {
511
+ }
512
+ pre.idle .Comment {
513
+ color: #919191;
514
+ }
515
+
516
+
517
+ pre.iplastic .Constant {
518
+ color: #6782D3;
519
+ }
520
+ pre.iplastic .Support {
521
+ font-weight: bold;
522
+ color: #3333FF;
523
+ }
524
+ pre.iplastic .EmbeddedSource {
525
+ background-color: #F9F9F9;
526
+ color: #000000;
527
+ }
528
+ pre.iplastic .Arguments {
529
+ font-style: italic;
530
+ }
531
+ pre.iplastic .TypeName {
532
+ font-weight: bold;
533
+ }
534
+ pre.iplastic .Identifier {
535
+ color: #9700CC;
536
+ }
537
+ pre.iplastic .Number {
538
+ color: #0066FF;
539
+ }
540
+ pre.iplastic .SectionName {
541
+ font-weight: bold;
542
+ }
543
+ pre.iplastic .Storage {
544
+ font-weight: bold;
545
+ }
546
+ pre.iplastic .line-numbers {
547
+ background-color: #BAD6FD;
548
+ color: #000000;
549
+ }
550
+ pre.iplastic {
551
+ background-color: #EEEEEE;
552
+ color: #000000;
553
+ }
554
+ pre.iplastic .FrameTitle {
555
+ font-weight: bold;
556
+ color: #000000;
557
+ }
558
+ pre.iplastic .TagName {
559
+ font-weight: bold;
560
+ }
561
+ pre.iplastic .Tag {
562
+ color: #0033CC;
563
+ }
564
+ pre.iplastic .Exception {
565
+ color: #990000;
566
+ }
567
+ pre.iplastic .XmlDeclaration {
568
+ color: #333333;
569
+ }
570
+ pre.iplastic .TrailingWhitespace {
571
+ background-color: #EEEEEE;
572
+ }
573
+ pre.iplastic .TagAttribute {
574
+ color: #3366CC;
575
+ font-style: italic;
576
+ }
577
+ pre.iplastic .Invalid {
578
+ background-color: #E7342D;
579
+ color: #FF0000;
580
+ }
581
+ pre.iplastic .Keyword {
582
+ color: #0000FF;
583
+ }
584
+ pre.iplastic .String {
585
+ color: #009933;
586
+ }
587
+ pre.iplastic .Comment {
588
+ color: #0066FF;
589
+ font-style: italic;
590
+ }
591
+ pre.iplastic .FunctionName {
592
+ color: #FF8000;
593
+ }
594
+ pre.iplastic .RegularExpression {
595
+ color: #FF0080;
596
+ }
597
+
598
+
599
+ pre.lazy .OcamlInfixFPOperator {
600
+ text-decoration: underline;
601
+ }
602
+ pre.lazy .OcamlInfixOperator {
603
+ color: #3B5BB5;
604
+ }
605
+ pre.lazy .MetaFunctionCallPy {
606
+ color: #3E4558;
607
+ }
608
+ pre.lazy .Superclass {
609
+ color: #3B5BB5;
610
+ font-style: italic;
611
+ }
612
+ pre.lazy .LatexEntity {
613
+ color: #D62A28;
614
+ }
615
+ pre.lazy .Constant {
616
+ color: #3B5BB5;
617
+ }
618
+ pre.lazy .OcamlFPConstant {
619
+ text-decoration: underline;
620
+ }
621
+ pre.lazy .Support {
622
+ color: #3B5BB5;
623
+ }
624
+ pre.lazy .OcamlOperator {
625
+ color: #000000;
626
+ }
627
+ pre.lazy .line-numbers {
628
+ background-color: #E3FC8D;
629
+ color: #000000;
630
+ }
631
+ pre.lazy .StringInterpolation {
632
+ color: #671EBB;
633
+ }
634
+ pre.lazy .InvalidIllegal {
635
+ background-color: #9D1E15;
636
+ color: #F8F8F8;
637
+ }
638
+ pre.lazy .OcamlVariant {
639
+ color: #7F90AA;
640
+ }
641
+ pre.lazy .MetaTag {
642
+ color: #3A4A64;
643
+ }
644
+ pre.lazy .OcamlPrefixFPOperator {
645
+ text-decoration: underline;
646
+ }
647
+ pre.lazy .OcamlPrefixOperator {
648
+ color: #3B5BB5;
649
+ }
650
+ pre.lazy .String {
651
+ color: #409B1C;
652
+ }
653
+ pre.lazy .Keyword {
654
+ color: #FF7800;
655
+ }
656
+ pre.lazy {
657
+ background-color: #FFFFFF;
658
+ color: #000000;
659
+ }
660
+ pre.lazy .InvalidDeprecated {
661
+ color: #990000;
662
+ font-style: italic;
663
+ }
664
+ pre.lazy .Variable {
665
+ }
666
+ pre.lazy .Entity {
667
+ color: #3B5BB5;
668
+ }
669
+ pre.lazy .Comment {
670
+ color: #8C868F;
671
+ }
672
+
673
+
674
+ pre.mac_classic .EmbeddedSource {
675
+ background-color: #0C0C0C;
676
+ }
677
+ pre.mac_classic .LibraryObject {
678
+ font-weight: bold;
679
+ color: #6D79DE;
680
+ }
681
+ pre.mac_classic .Section {
682
+ font-style: italic;
683
+ }
684
+ pre.mac_classic .FunctionArgumentAndResultTypes {
685
+ color: #70727E;
686
+ }
687
+ pre.mac_classic .TypeName {
688
+ text-decoration: underline;
689
+ }
690
+ pre.mac_classic .Number {
691
+ color: #0000CD;
692
+ }
693
+ pre.mac_classic {
694
+ background-color: #FFFFFF;
695
+ color: #000000;
696
+ }
697
+ pre.mac_classic .MarkupList {
698
+ color: #B90690;
699
+ }
700
+ pre.mac_classic .MarkupTagAttribute {
701
+ font-style: italic;
702
+ }
703
+ pre.mac_classic .LibraryVariable {
704
+ font-weight: bold;
705
+ color: #21439C;
706
+ }
707
+ pre.mac_classic .line-numbers {
708
+ background-color: #4D97FF;
709
+ color: #000000;
710
+ }
711
+ pre.mac_classic .FunctionParameter {
712
+ font-style: italic;
713
+ }
714
+ pre.mac_classic .MarkupTag {
715
+ color: #1C02FF;
716
+ }
717
+ pre.mac_classic .MarkupHeading {
718
+ font-weight: bold;
719
+ color: #0C07FF;
720
+ }
721
+ pre.mac_classic .JsOperator {
722
+ color: #687687;
723
+ }
724
+ pre.mac_classic .InheritedClassName {
725
+ font-style: italic;
726
+ }
727
+ pre.mac_classic .StringInterpolation {
728
+ color: #26B31A;
729
+ }
730
+ pre.mac_classic .MarkupQuote {
731
+ color: #000000;
732
+ font-style: italic;
733
+ }
734
+ pre.mac_classic .MarkupNameOfTag {
735
+ font-weight: bold;
736
+ }
737
+ pre.mac_classic .InvalidTrailingWhitespace {
738
+ background-color: #FFD0D0;
739
+ }
740
+ pre.mac_classic .LibraryConstant {
741
+ font-weight: bold;
742
+ color: #06960E;
743
+ }
744
+ pre.mac_classic .MarkupXmlDeclaration {
745
+ color: #68685B;
746
+ }
747
+ pre.mac_classic .EmbeddedEmbeddedSource {
748
+ background-color: #0E0E0E;
749
+ }
750
+ pre.mac_classic .PreprocessorDirective {
751
+ font-weight: bold;
752
+ color: #0C450D;
753
+ }
754
+ pre.mac_classic .BuiltInConstant {
755
+ font-weight: bold;
756
+ color: #585CF6;
757
+ }
758
+ pre.mac_classic .MarkupDtd {
759
+ font-style: italic;
760
+ }
761
+ pre.mac_classic .Invalid {
762
+ background-color: #990000;
763
+ color: #FFFFFF;
764
+ }
765
+ pre.mac_classic .LibraryFunction {
766
+ font-weight: bold;
767
+ color: #3C4C72;
768
+ }
769
+ pre.mac_classic .String {
770
+ color: #036A07;
771
+ }
772
+ pre.mac_classic .UserDefinedConstant {
773
+ font-weight: bold;
774
+ color: #C5060B;
775
+ }
776
+ pre.mac_classic .Keyword {
777
+ font-weight: bold;
778
+ color: #0000FF;
779
+ }
780
+ pre.mac_classic .MarkupDoctype {
781
+ color: #888888;
782
+ }
783
+ pre.mac_classic .FunctionName {
784
+ font-weight: bold;
785
+ color: #0000A2;
786
+ }
787
+ pre.mac_classic .PreprocessorLine {
788
+ color: #1A921C;
789
+ }
790
+ pre.mac_classic .Variable {
791
+ color: #318495;
792
+ }
793
+ pre.mac_classic .Comment {
794
+ color: #0066FF;
795
+ font-style: italic;
796
+ }
797
+
798
+
799
+ pre.slush_poppies .Directives {
800
+ font-weight: bold;
801
+ }
802
+ pre.slush_poppies .TypeName {
803
+ color: #800080;
804
+ }
805
+ pre.slush_poppies .InheritedClass {
806
+ }
807
+ pre.slush_poppies .OcamlInfixFPOperators {
808
+ text-decoration: underline;
809
+ }
810
+ pre.slush_poppies .Number {
811
+ color: #0080A0;
812
+ }
813
+ pre.slush_poppies .LibraryVariable {
814
+ }
815
+ pre.slush_poppies .Storage {
816
+ color: #008080;
817
+ }
818
+ pre.slush_poppies .line-numbers {
819
+ background-color: #B0B0FF;
820
+ color: #000000;
821
+ }
822
+ pre.slush_poppies .OcamlPrefixFPOperators {
823
+ text-decoration: underline;
824
+ }
825
+ pre.slush_poppies .OcamlFloatingPointConstants {
826
+ text-decoration: underline;
827
+ }
828
+ pre.slush_poppies .LineNumberDirectives {
829
+ }
830
+ pre.slush_poppies .TagName {
831
+ }
832
+ pre.slush_poppies .StorageTypes {
833
+ color: #A08000;
834
+ }
835
+ pre.slush_poppies .Operators {
836
+ color: #2060A0;
837
+ }
838
+ pre.slush_poppies .LibraryConstant {
839
+ }
840
+ pre.slush_poppies .VariantTypes {
841
+ color: #C08060;
842
+ }
843
+ pre.slush_poppies .FunctionArgument {
844
+ }
845
+ pre.slush_poppies .BuiltInConstant {
846
+ }
847
+ pre.slush_poppies .ClassTypeName {
848
+ color: #8000C0;
849
+ }
850
+ pre.slush_poppies .ModuleKeyword {
851
+ color: #0080FF;
852
+ }
853
+ pre.slush_poppies .Invalid {
854
+ }
855
+ pre.slush_poppies .LibraryClassType {
856
+ }
857
+ pre.slush_poppies .LibraryFunction {
858
+ }
859
+ pre.slush_poppies .TagAttribute {
860
+ }
861
+ pre.slush_poppies .Keyword {
862
+ color: #2060A0;
863
+ }
864
+ pre.slush_poppies .UserDefinedConstant {
865
+ }
866
+ pre.slush_poppies .CharacterConstants {
867
+ color: #800000;
868
+ }
869
+ pre.slush_poppies .String {
870
+ color: #C03030;
871
+ }
872
+ pre.slush_poppies {
873
+ background-color: #F1F1F1;
874
+ color: #000000;
875
+ }
876
+ pre.slush_poppies .FunctionName {
877
+ color: #800000;
878
+ }
879
+ pre.slush_poppies .Variable {
880
+ }
881
+ pre.slush_poppies .Comment {
882
+ color: #406040;
883
+ }
884
+
885
+
886
+ pre.sunburst .DiffInserted {
887
+ background-color: #253B22;
888
+ color: #F8F8F8;
889
+ }
890
+ pre.sunburst .DiffHeader {
891
+ background-color: #0E2231;
892
+ color: #F8F8F8;
893
+ font-style: italic;
894
+ }
895
+ pre.sunburst .CssPropertyValue {
896
+ color: #F9EE98;
897
+ }
898
+ pre.sunburst .CCCPreprocessorDirective {
899
+ color: #AFC4DB;
900
+ }
901
+ pre.sunburst .Constant {
902
+ color: #3387CC;
903
+ }
904
+ pre.sunburst .DiffChanged {
905
+ background-color: #4A410D;
906
+ color: #F8F8F8;
907
+ }
908
+ pre.sunburst .Support {
909
+ color: #9B859D;
910
+ }
911
+ pre.sunburst .MarkupList {
912
+ color: #E1D4B9;
913
+ }
914
+ pre.sunburst .CssConstructorArgument {
915
+ color: #8F9D6A;
916
+ }
917
+ pre.sunburst .Storage {
918
+ color: #99CF50;
919
+ }
920
+ pre.sunburst .line-numbers {
921
+ background-color: #DDF0FF;
922
+ color: #000000;
923
+ }
924
+ pre.sunburst .CssClass {
925
+ color: #9B703F;
926
+ }
927
+ pre.sunburst .StringConstant {
928
+ color: #DDF2A4;
929
+ }
930
+ pre.sunburst .MarkupSeparator {
931
+ background-color: #242424;
932
+ color: #60A633;
933
+ }
934
+ pre.sunburst .MarkupUnderline {
935
+ text-decoration: underline;
936
+ color: #E18964;
937
+ }
938
+ pre.sunburst .CssAtRule {
939
+ color: #8693A5;
940
+ }
941
+ pre.sunburst .MetaTagInline {
942
+ color: #E0C589;
943
+ }
944
+ pre.sunburst .JEntityNameType {
945
+ text-decoration: underline;
946
+ }
947
+ pre.sunburst .LogEntryError {
948
+ background-color: #751012;
949
+ }
950
+ pre.sunburst .MarkupHeading {
951
+ background-color: #632D04;
952
+ color: #FEDCC5;
953
+ }
954
+ pre.sunburst .CssTagName {
955
+ color: #CDA869;
956
+ }
957
+ pre.sunburst .SupportConstant {
958
+ color: #CF6A4C;
959
+ }
960
+ pre.sunburst .MarkupQuote {
961
+ background-color: #ECD091;
962
+ color: #E1D4B9;
963
+ font-style: italic;
964
+ }
965
+ pre.sunburst .DiffDeleted {
966
+ background-color: #420E09;
967
+ color: #F8F8F8;
968
+ }
969
+ pre.sunburst .CCCPreprocessorLine {
970
+ color: #8996A8;
971
+ }
972
+ pre.sunburst .StringRegexpSpecial {
973
+ color: #CF7D34;
974
+ }
975
+ pre.sunburst .EmbeddedSourceBright {
976
+ background-color: #ABADB4;
977
+ }
978
+ pre.sunburst .InvalidIllegal {
979
+ background-color: #150B15;
980
+ color: #FD5FF1;
981
+ }
982
+ pre.sunburst .MarkupRaw {
983
+ background-color: #ABADB4;
984
+ color: #578BB3;
985
+ }
986
+ pre.sunburst .SupportFunction {
987
+ color: #DAD085;
988
+ }
989
+ pre.sunburst .CssAdditionalConstants {
990
+ color: #DD7B3B;
991
+ }
992
+ pre.sunburst .MetaTagAll {
993
+ color: #89BDFF;
994
+ }
995
+ pre.sunburst .StringRegexp {
996
+ color: #E9C062;
997
+ }
998
+ pre.sunburst .StringEmbeddedSource {
999
+ color: #DAEFA3;
1000
+ }
1001
+ pre.sunburst .EntityInheritedClass {
1002
+ color: #9B5C2E;
1003
+ font-style: italic;
1004
+ }
1005
+ pre.sunburst .MarkupComment {
1006
+ color: #F67B37;
1007
+ font-style: italic;
1008
+ }
1009
+ pre.sunburst .MarkupBold {
1010
+ font-weight: bold;
1011
+ color: #E9C062;
1012
+ }
1013
+ pre.sunburst .CssId {
1014
+ color: #8B98AB;
1015
+ }
1016
+ pre.sunburst .CssPseudoClass {
1017
+ color: #8F9D6A;
1018
+ }
1019
+ pre.sunburst .JCast {
1020
+ color: #676767;
1021
+ font-style: italic;
1022
+ }
1023
+ pre.sunburst .StringVariable {
1024
+ color: #8A9A95;
1025
+ }
1026
+ pre.sunburst .String {
1027
+ color: #65B042;
1028
+ }
1029
+ pre.sunburst .Keyword {
1030
+ color: #E28964;
1031
+ }
1032
+ pre.sunburst {
1033
+ background-color: #000000;
1034
+ color: #F8F8F8;
1035
+ }
1036
+ pre.sunburst .LogEntry {
1037
+ background-color: #C7C7C7;
1038
+ }
1039
+ pre.sunburst .MarkupItalic {
1040
+ color: #E9C062;
1041
+ font-style: italic;
1042
+ }
1043
+ pre.sunburst .CssPropertyName {
1044
+ color: #C5AF75;
1045
+ }
1046
+ pre.sunburst .Namespaces {
1047
+ color: #E18964;
1048
+ }
1049
+ pre.sunburst .DoctypeXmlProcessing {
1050
+ color: #494949;
1051
+ }
1052
+ pre.sunburst .InvalidDeprecated {
1053
+ color: #FD5FF1;
1054
+ font-style: italic;
1055
+ }
1056
+ pre.sunburst .Variable {
1057
+ color: #3E87E3;
1058
+ }
1059
+ pre.sunburst .Entity {
1060
+ color: #89BDFF;
1061
+ }
1062
+ pre.sunburst .Comment {
1063
+ color: #AEAEAE;
1064
+ font-style: italic;
1065
+ }