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,41 +0,0 @@
1
- ---
2
- name: LaTeX Beamer
3
- fileTypes: []
4
-
5
- firstLineMatch: ^\\documentclass(\[.*\])?\{beamer\}
6
- scopeName: text.tex.latex.beamer
7
- uuid: 2ACA20AA-B008-469B-A04A-6DE232973ED8
8
- foldingStartMarker: \\begin\{.*\}|%.*\(fold\)\s*$
9
- patterns:
10
- - name: meta.function.environment.frame.latex
11
- captures:
12
- "1":
13
- name: support.function.be.latex
14
- "2":
15
- name: punctuation.definition.function.latex
16
- "3":
17
- name: punctuation.definition.arguments.begin.latex
18
- "4":
19
- name: variable.parameter.function.latex
20
- "5":
21
- name: punctuation.definition.arguments.end.latex
22
- begin: (?:\s*)((\\)begin)(\{)(frame)(\})
23
- end: ((\\)end)(\{)(frame)(\})
24
- patterns:
25
- - name: support.function.with-arg.latex
26
- captures:
27
- "1":
28
- name: support.function.with-arg.latex
29
- "2":
30
- name: punctuation.definition.function.latex
31
- "3":
32
- name: punctuation.definition.arguments.begin.latex
33
- "4":
34
- name: entity.name.function.frame.latex
35
- "5":
36
- name: punctuation.definition.arguments.end.latex
37
- match: ((\\)frametitle)(\{)(.*)(\})
38
- - include: $self
39
- - include: text.tex.latex
40
- foldingStopMarker: \\end\{.*\}|%.*\(end\)\s*$
41
- keyEquivalent: ^~B
@@ -1,50 +0,0 @@
1
- ---
2
- name: LaTeX Log
3
- firstLineMatch: "This is (pdfe)?TeXk?, Version "
4
- scopeName: text.log.latex
5
- uuid: F68ACE95-7DB3-4DFB-AA8A-89988B116B5C
6
- foldingStartMarker: /\*\*|\(\s*$
7
- patterns:
8
- - name: invalid.deprecated
9
- match: ".*Warning:"
10
- - name: invalid.deprecated
11
- match: "[^:]*:\\d*:.*"
12
- - name: invalid.illegal
13
- match: .*Error|^!.*
14
- - name: entity.name.function
15
- match: .*\.sty
16
- - name: entity.name.type.class
17
- match: .*\.cls
18
- - name: entity.name.tag.configuration
19
- match: .*\.cfg
20
- - name: entity.name.tag.definition
21
- match: .*\.def
22
- - name: comment.block.documentation
23
- match: .*Info.*
24
- - name: meta.log.latex.fixme
25
- match: ".*FiXme:"
26
- - name: meta.log.latex.hyphenation
27
- captures:
28
- "1":
29
- name: keyword.control.hyphenation.latex
30
- begin: (Overfull|Underfull)
31
- end: (\[\]\n)
32
- patterns:
33
- - name: variable.parameter.hyphenation.latex2
34
- match: "[0-9]+\\-\\-[0-9]+"
35
- - name: string.unquoted.other.filename.log.latex
36
- endCaptures:
37
- "0":
38
- name: punctuation.definition.string.end.log.latex
39
- begin: (<)
40
- beginCaptures:
41
- "0":
42
- name: punctuation.definition.string.begin.log.latex
43
- end: (>)
44
- patterns:
45
- - name: support.function.with-arg.latex
46
- captures:
47
- "1":
48
- name: entity.name.function.filename.latex
49
- match: (.*/.*\.pdf)
50
- foldingStopMarker: \*\*/|^\s*\)
@@ -1,64 +0,0 @@
1
- ---
2
- name: LaTeX Memoir
3
- fileTypes: []
4
-
5
- firstLineMatch: ^\\documentclass(\[.*\])?\{memoir\}
6
- scopeName: text.tex.latex.memoir
7
- uuid: D0853B20-ABFF-48AB-8AB9-3D8BA0755C05
8
- foldingStartMarker: \\begin\{.*\}|%.*\(fold\)\s*$
9
- patterns:
10
- - name: meta.function.memoir-fbox.latex
11
- captures:
12
- "1":
13
- name: support.function.be.latex
14
- "2":
15
- name: punctuation.definition.function.latex
16
- "3":
17
- name: punctuation.definition.arguments.begin.latex
18
- "4":
19
- name: variable.parameter.function.latex
20
- "5":
21
- name: punctuation.definition.arguments.end.latex
22
- begin: (?:\s*)((\\)begin)(\{)(framed|shaded|leftbar)(\})
23
- end: ((\\)end)(\{)(\4)(\})
24
- patterns:
25
- - include: $self
26
- - name: meta.function.memoir-verbatim.latex
27
- captures:
28
- "1":
29
- name: support.function.be.latex
30
- "2":
31
- name: punctuation.definition.function.latex
32
- "3":
33
- name: punctuation.definition.arguments.begin.latex
34
- "4":
35
- name: variable.parameter.function.latex
36
- "5":
37
- name: punctuation.definition.arguments.end.latex
38
- begin: (?:\s*)((\\)begin)(\{)((?:fboxv|boxedv|V)erbatim)(\})
39
- contentName: markup.raw.verbatim.latex
40
- end: ((\\)end)(\{)(\4)(\})
41
- - name: meta.function.memoir-alltt.latex
42
- captures:
43
- "1":
44
- name: support.function.be.latex
45
- "2":
46
- name: punctuation.definition.function.latex
47
- "3":
48
- name: punctuation.definition.arguments.begin.latex
49
- "4":
50
- name: variable.parameter.function.latex
51
- "5":
52
- name: punctuation.definition.arguments.end.latex
53
- begin: (?:\s*)((\\)begin)(\{)(alltt)(\})
54
- contentName: markup.raw.verbatim.latex
55
- end: ((\\)end)(\{)(alltt)(\})
56
- patterns:
57
- - name: support.function.general.tex
58
- captures:
59
- "1":
60
- name: punctuation.definition.function.tex
61
- match: (\\)[A-Za-z]+
62
- - include: text.tex.latex
63
- foldingStopMarker: \\end\{.*\}|%.*\(end\)\s*$
64
- keyEquivalent: ^~M
@@ -1,219 +0,0 @@
1
- ---
2
- name: Lex/Flex
3
- fileTypes:
4
- - l
5
- scopeName: source.lex
6
- repository:
7
- csource:
8
- patterns:
9
- - name: support.function.c.lex
10
- match: \b(?:ECHO|BEGIN|REJECT|YY_FLUSH_BUFFER|YY_BREAK|yy(?:more|less|unput|input|terminate|text|leng|restart|_(?:push|pop|top)_state|_(?:create|switch_to|flush|delete)_buffer|_scan_(?:string|bytes|buffer)|_set_(?:bol|interactive))(?=\(|$))\b
11
- - include: source.c
12
- subregexp:
13
- patterns:
14
- - include: "#re_escape"
15
- - name: constant.other.character-class.set.lex
16
- endCaptures:
17
- "1":
18
- name: punctuation.terminator.character-class.set.lex
19
- begin: (\[)(\^)?-?
20
- beginCaptures:
21
- "1":
22
- name: punctuation.definition.character-class.set.lex
23
- "2":
24
- name: keyword.operator.negation.regexp.lex
25
- end: -?(\])
26
- patterns:
27
- - include: "#re_escape"
28
- - name: constant.other.character-class.set.lex
29
- captures:
30
- "1":
31
- name: invalid.illegal.regexp.lex
32
- match: \[:(?:(?:alnum|alpha|blank|cntrl|x?digit|graph|lower|print|punct|space|upper)|(.*?)):\]
33
- - name: variable.other.lex
34
- match: (?i){[a-z_][a-z0-9_-]*}
35
- - name: keyword.operator.quantifier.regexp.lex
36
- begin: \{
37
- end: \}
38
- patterns:
39
- - match: (?<=\{)[0-9]*(?:,[0-9]*)?(?=\})
40
- - name: invalid.illegal.regexp.lex
41
- match: "[^}]"
42
- comment: "{3} counts should only have digit[,digit]"
43
- - name: string.quoted.double.regexp.lex
44
- begin: "\""
45
- end: "\""
46
- patterns:
47
- - include: "#re_escape"
48
- - begin: ([*+?])(?=[*+?])
49
- beginCaptures:
50
- "1":
51
- name: keyword.operator.quantifier.regexp.lex
52
- end: (?=[^*+?])
53
- patterns:
54
- - name: invalid.illegal.regexp.lex
55
- match: .
56
- comment: make ** or +? or other combinations illegal
57
- - name: keyword.operator.quantifier.regexp.lex
58
- match: "[*+?]"
59
- - name: invalid.illegal.regexp.lex
60
- match: <<EOF>>
61
- comment: <<EOF>> is handled in the rule pattern
62
- - name: meta.group.regexp.lex
63
- endCaptures:
64
- "1":
65
- name: punctuation.terminator.group.regexp.lex
66
- begin: (\()
67
- beginCaptures:
68
- "1":
69
- name: punctuation.definition.group.regexp.lex
70
- end: (\))|(?=\s)|$(?#end on whitespace because regex does)
71
- patterns:
72
- - name: invalid.illegal.regexp.lex
73
- match: /
74
- - include: "#subregexp"
75
- - begin: (/)
76
- beginCaptures:
77
- "1":
78
- name: keyword.operator.trailing-match.regexp.lex
79
- end: (?=\s)|$
80
- patterns:
81
- - name: invalid.illegal.regexp.lex
82
- match: /|\$(?!\S)
83
- - include: "#subregexp"
84
- comment: detection of multiple trailing contexts
85
- regexp:
86
- name: string.regexp.lex
87
- captures:
88
- "1":
89
- name: keyword.control.anchor.regexp.lex
90
- begin: \G(?=\S)(\^)?
91
- end: (\$)?(?:(?=\s)|$)
92
- patterns:
93
- - include: "#subregexp"
94
- re_escape:
95
- name: constant.character.escape.lex
96
- match: \\(?i:[0-9]{1,3}|x[0-9a-f]{1,2}|.)
97
- includes:
98
- patterns:
99
- - name: meta.embedded.source.c.lex
100
- begin: ^%\{$
101
- end: ^%\}$
102
- patterns:
103
- - include: source.c
104
- comment: "TODO: $} should override the embedded scopes"
105
- - name: meta.embedded.source.c.lex
106
- begin: ^[ \t]+
107
- end: $
108
- patterns:
109
- - include: source.c
110
- comment: "TODO: eol should override the embedded scopes"
111
- rec_csource:
112
- begin: \{
113
- end: \}
114
- patterns:
115
- - include: source.c
116
- - include: "#csource"
117
- uuid: 92E842A0-9DE6-4D31-A6AC-1CDE0F9547C5
118
- foldingStartMarker: /\*\*|\{\s*$
119
- patterns:
120
- - name: meta.section.definitions.lex
121
- begin: \A(?!%%$)
122
- end: ^(?=%%$)
123
- patterns:
124
- - include: "#includes"
125
- - name: comment.block.c.lex
126
- begin: /\*
127
- end: \*/|$
128
- - name: meta.definition.lex
129
- begin: ^(?i)([a-z_][a-z0-9_-]*)(?=\s|$)
130
- beginCaptures:
131
- "1":
132
- name: entity.name.function.lex
133
- end: $
134
- patterns:
135
- - include: "#regexp"
136
- - name: meta.start-condition.lex
137
- begin: ^(%[sx])(?=\s|$)
138
- beginCaptures:
139
- "1":
140
- name: punctuation.definition.start-condition.lex
141
- end: $
142
- patterns:
143
- - match: (?i)[a-z_][a-z0-9_-]*
144
- - name: invalid.illegal.lex
145
- match: \S
146
- - name: meta.options.lex
147
- begin: ^(%option)\s(?=\S)
148
- beginCaptures:
149
- "1":
150
- name: keyword.other.option.lex
151
- end: $
152
- patterns:
153
- - name: support.other.option.lex
154
- match: \b(?:(?:no)?(?:[78]bit|align|backup|batch|c\+\+|debug|default|ecs|fast|full|interactive|lex-compat|meta-ecs|perf-report|read|stdout|verbose|warn|array|pointer|input|unput|yy_(?:(?:push|pop|top)_state|scan_(?:buffer|bytes|string))|main|stack|stdinit|yylineno|yywrap)|(?:case(?:ful|less)|case-(?:in)?sensitive|(?:always|never)-interactive))\b
155
- - name: keyword.other.option.lex
156
- begin: ^%(?:array|pointer)
157
- end: $
158
- patterns:
159
- - name: invalid.illegal.lex
160
- match: \S
161
- comment: first section of the file - definitions
162
- - begin: ^(%%)$
163
- beginCaptures:
164
- "1":
165
- name: punctuation.separator.sections.lex
166
- end: \Z.\A(?# never end)
167
- patterns:
168
- - name: meta.section.rules.lex
169
- begin: ^(?!%%$)
170
- end: ^(?=%%$)
171
- patterns:
172
- - name: meta.rule.lex
173
- begin: ^(?!$)
174
- end: $
175
- patterns:
176
- - include: "#includes"
177
- - begin: (?i)^(<(?:(?:[a-z_][a-z0-9_-]*,)*[a-z_][a-z0-9_-]|\*)>)?(?:(<<EOF>>)(\s*))?(?=\S)
178
- beginCaptures:
179
- "1":
180
- name: keyword.other.start-condition.lex
181
- "2":
182
- name: keyword.operator.eof.lex
183
- "3":
184
- name: invalid.illegal.regexp.lex
185
- end: (?=\s)|$
186
- patterns:
187
- - include: "#regexp"
188
- comment: rule pattern
189
- - endCaptures:
190
- "1":
191
- name: punctuation.terminator.code.lex
192
- "2":
193
- name: invalid.illegal.ignored.lex
194
- begin: (%\{)
195
- beginCaptures:
196
- "1":
197
- name: punctuation.definition.code.lex
198
- end: (%\})(.*)
199
- patterns:
200
- - include: "#csource"
201
- comment: "TODO: %} should override embedded scopes"
202
- - name: meta.rule.action.lex
203
- begin: (?=\S)
204
- end: $
205
- patterns:
206
- - include: "#csource"
207
- comment: "TODO: eol should override embedded scopes"
208
- comment: second section of the file - rules
209
- - begin: ^(%%)$
210
- contentName: meta.section.user-code.lex
211
- beginCaptures:
212
- "1":
213
- name: punctuation.separator.sections.lex
214
- end: \Z.\A(?# never end)
215
- patterns:
216
- - include: "#csource"
217
- comment: third section of the file - user code
218
- foldingStopMarker: \*\*/|^\s*\}
219
- keyEquivalent: ^~L
@@ -1,54 +0,0 @@
1
- ---
2
- name: Lighttpd
3
- scopeName: source.lighttpd-config
4
- uuid: C244BFF4-2C1A-490F-831E-8EF7DF4E0C9B
5
- foldingStartMarker: (\{|\()\s*$
6
- patterns:
7
- - name: comment.line.number-sign.lighttpd-config
8
- captures:
9
- "1":
10
- name: punctuation.definition.comment.lighttpd-config
11
- match: (#).*$\n?
12
- - captures:
13
- "1":
14
- name: punctuation.separator.key-value.lighttpd-config
15
- "2":
16
- name: string.regexp.lighttpd-config
17
- "3":
18
- name: punctuation.definition.string.begin.lighttpd-config
19
- "4":
20
- name: punctuation.definition.string.end.lighttpd-config
21
- match: (=~|!~)\s*((").*("))
22
- - captures:
23
- "1":
24
- name: punctuation.separator.key-value.lighttpd-config
25
- "2":
26
- name: constant.numeric.lighttpd-config
27
- match: (=>?)\s*([0-9]+)
28
- - name: punctuation.separator.key-value.lighttpd-config
29
- match: =|\+=|==|!=|=~|!~|=>
30
- - name: string.quoted.double.lighttpd-config
31
- endCaptures:
32
- "0":
33
- name: punctuation.definition.string.end.lighttpd-config
34
- begin: "\""
35
- beginCaptures:
36
- "0":
37
- name: punctuation.definition.string.begin.lighttpd-config
38
- end: "\""
39
- patterns:
40
- - name: constant.character.escape.quote.lighttpd-config
41
- match: "\"\""
42
- - name: variable.language.lighttpd-config
43
- captures:
44
- "1":
45
- name: punctuation.definition.variable.lighttpd-config
46
- match: (\$)[a-zA-Z][0-9a-zA-Z]*
47
- - name: support.constant.name.lighttpd-config
48
- match: ^\s*[a-zA-Z][0-9a-zA-Z.-]*
49
- - captures:
50
- "1":
51
- name: invalid.illegal.semicolon-at-end-of-line.lighttpd-config
52
- match: (;)\s*$
53
- foldingStopMarker: ^\s*(\}|\))
54
- keyEquivalent: ^~L
@@ -1,492 +0,0 @@
1
- ---
2
- name: Lilypond
3
- fileTypes:
4
- - ly
5
- - ily
6
- scopeName: source.lilypond
7
- repository:
8
- g_markup:
9
- name: meta.element.markup.lilypond
10
- begin: "(?x)\n\
11
- \t\t\t\t((\\\\) markup) \\s+ # backslash + \"markup\" + spaces\n\
12
- \t\t\t\t(?={)\n\
13
- \t\t\t"
14
- beginCaptures:
15
- "1":
16
- name: support.function.element.markup.lilypond
17
- "2":
18
- name: punctuation.definition.function.markup
19
- end: (?<=})
20
- patterns:
21
- - include: "#g_m_group"
22
- comments:
23
- patterns:
24
- - name: comment.block.lilypond
25
- captures:
26
- "0":
27
- name: punctuation.definition.comment.lilypond
28
- begin: "%{"
29
- end: "%}"
30
- - name: comment.line.lilypond
31
- begin: "%"
32
- beginCaptures:
33
- "0":
34
- name: punctuation.definition.comment.lilypond
35
- end: $\n?
36
- g_times:
37
- begin: ((\\)times)\s*(?:([1-9][0-9]*/[1-9][0-9])\s*)(?={)
38
- beginCaptures:
39
- "1":
40
- name: support.function.section.lilypond
41
- "2":
42
- name: punctuation.definition.function.lilypond
43
- "3":
44
- name: constant.numeric.fraction.lilypond
45
- end: (?<=})
46
- patterns:
47
- - include: "#group"
48
- f_keywords:
49
- name: keyword.control.lilypond
50
- captures:
51
- "1":
52
- name: punctuation.definition.function.lilypond
53
- match: "(?x)\n\
54
- \t\t\t\t(?: (\\\\)\n\
55
- \t\t\t\t (?: set | new | override | revert)\n\
56
- \t\t\t\t)\n\
57
- \t\t\t"
58
- f_clef:
59
- name: meta.element.clef.lilypond
60
- captures:
61
- "6":
62
- name: meta.fixme.unknown-clef-name.lilypond
63
- "7":
64
- name: constant.other.modifier.clef.lilypond
65
- "8":
66
- name: punctuation.definition.string.lilypond
67
- "1":
68
- name: support.function.element.lilypond
69
- "2":
70
- name: punctuation.definition.function.lilypond
71
- "3":
72
- name: punctuation.definition.string.lilypond
73
- "4":
74
- name: constant.language.clef-name.lilypond
75
- "5":
76
- name: constant.other.modifier.clef.lilypond
77
- match: "(?x)\n\
78
- \t\t\t\t((\\\\) clef) \\s+ # backslash + \"clef\" + spaces (groups 1-2)\n\
79
- \t\t\t\t(?:\n\
80
- \t\t\t\t (\"?)\t# beginning quotes (group 3)\n\
81
- \t\t\t\t ( (?: # group 4\n\
82
- \t\t\t\t\t treble | violin | G | french | # G clefs\n\
83
- \t\t\t\t alto | C | tenor | (?:mezzo)?soprano | baritone | # C clefs\n\
84
- \t\t\t\t (?:sub)?bass | F | varbaritone | # F clefs\n\
85
- \t\t\t\t percussion | tab | # percussion / tablature clefs\n \n\
86
- \t\t\t (?:neo)?mensural-c[1-4] | mensural-[fg] | \t\t# Ancient clefs\n\
87
- \t\t\t\t petrucci-(?: [fg] | c[1-5] ) |\n\
88
- \t\t\t\t (?: vaticana | medicaea | hufnagel ) - (?: do[1-3] | fa[12] ) |\n\
89
- \t\t\t\t hufnagel-do-fa\n\
90
- \t\t\t\t )\n\
91
- \t\t\t\t ([_^](?:8|15)?)? # optionally shift 1-2 octaves \xE2\x86\x91/\xE2\x86\x93 (group 5)\n\
92
- \t\t\t\t ) |\n\
93
- \t\t\t\t ( (?:\\w+) ([_^](?:8|15))? ) # unknown clef name (groups 6-7)\n\
94
- \t\t\t\t (\\3) # closing quotes (group 8)\n\
95
- \t\t\t\t)?\n\
96
- \t\t\t"
97
- comment: "\n\
98
- \t\t\t\tThis looks something like: \\clef mezzosoprano_8\n\
99
- \t\t\t\tOr maybe: \\clef neomensural-c3^15\n\
100
- \t\t\t"
101
- g_relative:
102
- begin: ((\\)relative)\s*(?:([a-h][',]*)\s*)?(?={)
103
- beginCaptures:
104
- "1":
105
- name: support.function.section.lilypond
106
- "2":
107
- name: punctuation.definition.function.lilypond
108
- "3":
109
- name: storage.type.pitch.lilypond
110
- end: (?<=})
111
- patterns:
112
- - include: "#group"
113
- scheme:
114
- begin: "#"
115
- contentName: source.scheme.embedded.lilypond
116
- beginCaptures:
117
- "0":
118
- name: punctuation.section.embedded.scheme.lilypond
119
- end: (?=[\s%])|(?<=\n)
120
- patterns:
121
- - include: source.scheme
122
- comment: "\n\
123
- \t\t\t\tLilypond source can embed scheme code to do things more\n\
124
- \t\t\t\tflexibly than allowed by the basic language.\n\n\
125
- \t\t\t\tWe need to make sure to match after a \\n, as included\n\
126
- \t\t\t\tby some s-expressions in the scheme grammar.\n\
127
- \t\t\t"
128
- notes:
129
- patterns:
130
- - name: meta.element.note.lilypond
131
- begin: "(?x)\\b\n\
132
- \t\t\t\t\t (\t\t\t\t\t\t # (group 1)\n\
133
- \t\t\t\t\t\t ( [a-h] # Pitch (group 2)\n\
134
- \t\t\t\t\t\t ( (?:i[sh]){1,2} | # - sharp (group 3)\n\
135
- \t\t\t\t\t\t (?:e[sh]|s){1,2} # - flat\n\
136
- \t\t\t\t\t\t )?\n\
137
- \t\t\t\t\t ([!?])? # Cautionary accidental (group 4)\n\
138
- \t\t\t\t\t ('+|,+)? # Octave (group 5)\n\
139
- \t\t\t\t\t\t )\n\
140
- \t\t\t\t\t\t ( ( ((\\\\)breve)| # Duration (groups 6-9)\n\
141
- \t\t\t\t\t\t 64|32|16|8|4|2|1\n\
142
- \t\t\t\t\t\t )\n\
143
- \t\t\t\t\t\t (\\.)? # Augmentation dot (group 10)\n\
144
- \t\t\t\t\t\t\t((\\*)(\\d+(?:/\\d+)?))? # Scaling duration (groups 11-13)\n\
145
- \t\t\t\t\t\t )?\n\
146
- \t\t\t\t\t\t)(?![a-z])\t# do not follow a note with a letter\n\
147
- \t\t\t\t\t"
148
- beginCaptures:
149
- "6":
150
- name: storage.type.duration.lilypond
151
- "12":
152
- name: keyword.operator.duration-scale.lilypond
153
- "13":
154
- name: constant.numeric.fraction.lilypond
155
- "9":
156
- name: punctuation.definition.function.lilypond
157
- "2":
158
- name: storage.type.pitch.lilypond
159
- "4":
160
- name: meta.note-modifier.cautionary-accidental.lilypond
161
- "5":
162
- name: meta.note-modifier.octave.lilypond
163
- end: "(?x)\n\
164
- \t\t\t\t\t\t(?= [ }~a-z] ) # End when we encounter a space or }\n\
165
- \t\t\t\t\t"
166
- patterns:
167
- - include: "#n_articulations"
168
- comment: "\n\
169
- \t\t\t\t\t\tThis rule handles notes, including the pitch, the\n\
170
- \t\t\t\t\t\tduration, and any articulations drawn along with\n\
171
- \t\t\t\t\t\tthe note.\n\
172
- \t\t\t\t\t\t\n\
173
- \t\t\t\t\t\tThis rule gets a whole lot uglier if we want to\n\
174
- \t\t\t\t\t\tsupport multilingual note names. If so, the rule\n\
175
- \t\t\t\t\t\tgoes something like:\n\
176
- \t\t\t\t\t\t\n\
177
- \t\t\t\t\t\t(?x)\n\
178
- \t\t\t\t\t\t\t\\b( # Basic Pitches\n\
179
- \t\t\t\t\t\t\t [a-h] # Dutch/English/etc. \n\
180
- \t\t\t\t\t\t\t (?: (iss?|s|sharp|x)(iss?|s|sharp|x|ih) | # sharp / flat\n\
181
- \t\t\t\t\t\t\t\t (ess?|s|flat|f)(ess?|s|flat|f|eh)\n\
182
- \t\t\t\t\t\t\t )? |\n\
183
- \t\t\t\t\t\t\t (?: do|re|mi|fa|sol|la|si) # Italian/Spanish\n\
184
- \t\t\t\t\t\t\t (?: ss?|dd?bb?) # sharp/flat\n\
185
- \t\t\t\t\t\t\t)\n\
186
- \t\t\t\t\t\t...\n\
187
- \t\t\t\t\t"
188
- - name: meta.element.pause.rest.lilypond
189
- begin: "(?x)\\b\n\
190
- \t\t\t\t\t\t(r) # (group 1)\n\
191
- \t\t\t\t\t\t( ( (\\\\)breve| # Duration (groups 2-4)\n\
192
- \t\t\t\t\t\t 64|32|16|8|4|2|1\n\
193
- \t\t\t\t\t\t )\n\
194
- \t\t\t\t\t\t (\\.)? # Augmentation dot (group 5)\n\
195
- \t\t\t\t\t\t ((\\*)(\\d+(?:/\\d+)?))? # Scaling duration (groups 6-8)\n\
196
- \t\t\t\t\t\t\n\
197
- \t\t\t\t\t\t)?\n\
198
- \t\t\t\t\t\t(?![a-z])\t# do not follow a note with a letter\n\
199
- \t\t\t\t\t"
200
- beginCaptures:
201
- "6":
202
- name: keyword.operator.duration-scale.lilypond
203
- "8":
204
- name: constant.numeric.fraction.lilypond
205
- "1":
206
- name: storage.type.pause.rest.lilypond
207
- "2":
208
- name: storage.type.duration.lilypond
209
- "4":
210
- name: punctuation.definition.function.lilypond
211
- end: (?=[ }~a-z])
212
- patterns:
213
- - include: "#n_articulations"
214
- - name: meta.element.pause.skip.lilypond
215
- begin: "(?x)\\b\n\
216
- \t\t\t\t\t\t(s) # (group 1)\n\
217
- \t\t\t\t\t\t( ( (\\\\)breve| # Duration (groups 2-4)\n\
218
- \t\t\t\t\t\t 64|32|16|8|4|2|1\n\
219
- \t\t\t\t\t\t )\n\
220
- \t\t\t\t\t\t (\\.)? # Augmentation dot (group 5)\n\
221
- \t\t\t\t\t\t ((\\*)(\\d+(?:/\\d+)?))? # Scaling duration (groups 6-8)\n\
222
- \t\t\t\t\t\t\n\
223
- \t\t\t\t\t\t)?\n\
224
- \t\t\t\t\t\t(?![a-z])\t# do not follow a note with a letter\n\
225
- \t\t\t\t\t"
226
- beginCaptures:
227
- "6":
228
- name: keyword.operator.duration-scale.lilypond
229
- "8":
230
- name: constant.numeric.fraction.lilypond
231
- "1":
232
- name: storage.type.pause.skip.lilypond
233
- "2":
234
- name: storage.type.duration.lilypond
235
- "4":
236
- name: punctuation.definition.function.lilypond
237
- end: (?=[ }~a-z])
238
- patterns:
239
- - include: "#n_articulations"
240
- - name: meta.element.pause.skip.lilypond
241
- captures:
242
- "1":
243
- name: storage.type.pause.skip.lilypond
244
- "2":
245
- name: punctuation.definition.function.lilypond
246
- "3":
247
- name: storage.type.duration.lilypond
248
- match: ((\\)skip)\s+(64|32|16|8|4|2|1)
249
- - name: meta.element.chord.lilypond
250
- endCaptures:
251
- "1":
252
- name: punctuation.definition.chord.lilypond
253
- "2":
254
- name: storage.type.duration.lilypond
255
- "4":
256
- name: punctuation.definition.function.lilypond
257
- begin: <
258
- beginCaptures:
259
- "0":
260
- name: punctuation.definition.chord.lilypond
261
- end: "(?x)\n\
262
- \t\t\t\t\t\t(>)\n\
263
- \t\t\t\t\t\t( ( ((\\\\)breve)| # Duration (groups 2-4)\n\
264
- \t\t\t\t\t\t 64|32|16|8|4|2|1\n\
265
- \t\t\t\t\t\t )\n\
266
- \t\t\t\t\t\t (\\.)? # Augmentation dot (group 5)\n\
267
- \t\t\t\t\t\t)?\n\
268
- \t\t\t\t\t"
269
- patterns:
270
- - captures:
271
- "1":
272
- name: storage.type.pitch.lilypond
273
- "3":
274
- name: meta.note-modifier.cautionary-accidental.lilypond
275
- "4":
276
- name: meta.note-modifier.octave.lilypond
277
- match: "(?x)\\b\n\
278
- \t\t\t\t\t\t\t\t ( [a-h] # Pitch (group 1)\n\
279
- \t\t\t\t\t\t\t\t ( (?:i[sh]){1,2} | # - sharp (group 2)\n\
280
- \t\t\t\t\t\t\t\t (?:e[sh]|s){1,2} # - flat\n\
281
- \t\t\t\t\t\t\t\t )?\n\
282
- \t\t\t\t\t\t\t ([!?])? # Cautionary accidental (group 3)\n\
283
- \t\t\t\t\t\t\t ('+|,+)? # Octave (group 4)\n\
284
- \t\t\t\t\t\t\t\t )\n\
285
- \t\t\t\t\t\t\t"
286
- comment: "\n\
287
- \t\t\t\t\t\tLilypond chords look like: < a b c >\n\
288
- \t\t\t\t\t"
289
- - name: meta.element.chord.lilypond
290
- begin: (?<=>)(?<!->)(?!\s)
291
- end: (?=[ }~a-z])(?<![^-]>)
292
- patterns:
293
- - include: "#n_articulations"
294
- comment: "\n\
295
- \t\t\t\t\t\tThis rule attaches stuff to the end of a chord\n\
296
- \t\t\t\t\t\t\n\
297
- \t\t\t\t\t\tTherefore it begins after the > which ends a chord,\n\
298
- \t\t\t\t\t\tand does not end after a > which ends a chord.\n\
299
- \t\t\t\t\t\t(to avoid infinite loops)\n\
300
- \t\t\t\t\t"
301
- - name: storage.type.tie.lilypond
302
- match: "~"
303
- - name: storage.type.breath-mark.lilypond
304
- captures:
305
- "1":
306
- name: punctuation.definition.function.lilypond
307
- match: (\\)breathe
308
- comment: "\n\
309
- \t\t\t\tThis section includes the rules for notes, rests, and chords\n\
310
- \t\t\t"
311
- n_articulations:
312
- patterns:
313
- - name: storage.modifier.articulation.accent.lilypond
314
- match: "(?x)\n\
315
- \t\t\t\t\t\t([_^-])\n\
316
- \t\t\t\t\t\t(?:[.>^+_-])\n\
317
- \t\t\t\t\t"
318
- - name: storage.modifier.articulation.named.lilypond
319
- captures:
320
- "1":
321
- name: punctuation.definition.function.lilypond
322
- match: "(?x)\n\
323
- \t\t\t\t\t\t(\\\\)\n\
324
- \t\t\t\t\t\t(?: accent | markato | staccatissimo |\t\t # basic accents\n\
325
- \t\t\t\t\t\t\tespressivo | staccato | tenuto | portato | \n\
326
- \t\t\t\t\t\t\t(?:up|down)bow | flageolet | thumb |\n\
327
- \t\t\t\t\t\t\t[lr](?:heel|toe) | open | stopped |\n\
328
- \t\t\t\t\t\t\t(?:reverse)?turn | trill |\n\
329
- \t\t\t\t\t\t\tprall(?: prall | mordent | down | up)? | # pralls\n\
330
- \t\t\t\t\t\t\t(?: up | down | line ) prall | # and\n\
331
- \t\t\t\t\t\t\t(?: up | down )? mordent | # mordents\n\
332
- \t\t\t\t\t\t\tsignumcongruentiae |\n\
333
- \t\t\t\t\t\t\t(?: (?:very)? long | short)?fermata(Markup)? | # fermatas\n\
334
- \t\t\t\t\t\t\tsegno | (?:var)?coda \n\
335
- \t\t\t\t\t\t)\n\
336
- \t\t\t\t\t"
337
- - name: storage.modifier.articulation.dynamics.lilypond
338
- match: "(?x)\n\
339
- \t\t\t\t\t\t(\\\\) # backslash\n\
340
- \t\t\t\t\t\tp{1,5} | m[pf] | f{1,4} | fp | # forte, piano, etc.\n\
341
- \t\t\t\t\t\tsff? | spp? | [sr]fz | \n\
342
- \t\t\t\t\t\t< | > | ! | espressivo # (de)crescendo\n\
343
- \t\t\t\t\t"
344
- - name: storage.modifier.beam.lilypond
345
- match: \[|\]
346
- - name: storage.modifier.slur.lilypond
347
- match: \(|\)
348
- functions:
349
- patterns:
350
- - include: "#f_clef"
351
- - include: "#f_time-signature"
352
- - include: "#f_key-signature"
353
- - include: "#f_keywords"
354
- - include: "#f_generic"
355
- strings:
356
- name: string.quoted.double.lilypond
357
- captures:
358
- "0":
359
- name: punctuation.definition.string.lilypond
360
- begin: "\""
361
- end: "\""
362
- patterns:
363
- - name: constant.character.escape.lilypond
364
- match: \\.
365
- f_key-signature:
366
- name: meta.element.key-signature.lilypond
367
- comment: FIXME
368
- music-expr:
369
- patterns:
370
- - include: "#comments"
371
- - include: "#groupings"
372
- - include: "#strings"
373
- - include: "#functions"
374
- - include: "#scheme"
375
- - include: "#notes"
376
- g_system:
377
- name: meta.system.lilypond
378
- endCaptures:
379
- "0":
380
- name: punctuation.section.system.end.lilypond
381
- begin: "<<"
382
- beginCaptures:
383
- "0":
384
- name: punctuation.section.system.begin.lilypond
385
- end: ">>"
386
- patterns:
387
- - include: $self
388
- f_generic:
389
- name: support.function.general.lilypond
390
- captures:
391
- "1":
392
- name: punctuation.definition.function.lilypond
393
- match: (\\)[a-zA-Z-]+\b
394
- groupings:
395
- patterns:
396
- - include: "#g_system"
397
- - include: "#g_relative"
398
- - include: "#g_times"
399
- - include: "#group"
400
- group:
401
- name: meta.music-expression.lilypond
402
- endCaptures:
403
- "0":
404
- name: punctuation.section.group.end.lilypond
405
- begin: "{"
406
- beginCaptures:
407
- "0":
408
- name: punctuation.section.group.begin.lilypond
409
- end: "}"
410
- patterns:
411
- - include: "#music-expr"
412
- g_header:
413
- name: meta.header.lilypond
414
- endCaptures:
415
- "0":
416
- name: punctuation.section.group.end.lilypond
417
- begin: ((\\)header)\s*({)
418
- beginCaptures:
419
- "1":
420
- name: support.function.section.header.lilypond
421
- "2":
422
- name: punctuation.definition.function.lilypond
423
- "3":
424
- name: punctuation.section.group.begin.lilypond
425
- end: "}"
426
- patterns:
427
- - include: "#comments"
428
- - include: "#strings"
429
- - include: "#scheme"
430
- - include: "#g_markup"
431
- - name: punctuation.separator.key-value.lilypond
432
- match: "="
433
- - name: support.constant.header.lilypond
434
- match: "(?x)\n\
435
- \t\t\t\t\t\tdedication | title | subtitle | subsubtitle | poet |\n\
436
- \t\t\t\t\t\tcomposer | meter | opus | arranger | instrument |\n\
437
- \t\t\t\t\t\tpiece | breakbefore | copyright | tagline | enteredby\n\
438
- \t\t\t\t\t"
439
- - name: support.constant.header.mutopia.lilypond
440
- match: "(?x)\n\
441
- \t\t\t\t\t\tmutopiatitle | mutopiacomposer | mutopiapoet |\n\
442
- \t\t\t\t\t\tmutopiaopus | mutopiainstrument | date | source |\n\
443
- \t\t\t\t\t\tstyle | maintainer | maintainerEmail |\n\
444
- \t\t\t\t\t\tmaintainerWeb | lastupdated\n\
445
- \t\t\t\t\t"
446
- g_m_group:
447
- name: meta.group.lilypond
448
- endCaptures:
449
- "0":
450
- name: punctuation.section.group.end.lilypond
451
- begin: "{"
452
- beginCaptures:
453
- "0":
454
- name: punctuation.section.group.begin.lilypond
455
- end: "}"
456
- patterns:
457
- - include: "#f_generic"
458
- - include: "#strings"
459
- - include: "#comments"
460
- - include: "#scheme"
461
- - include: "#g_m_group"
462
- f_time-signature:
463
- name: meta.element.time-signature.lilypond
464
- captures:
465
- "1":
466
- name: support.function.element.lilypond
467
- "2":
468
- name: punctuation.definition.function.lilypond
469
- "3":
470
- name: constant.numeric.time-signature.lilypond
471
- match: "(?x)\n\
472
- \t\t\t\t((\\\\) time) \\s+ # backslash + \"time\" + spaces (groups 1-2)\n\
473
- \t\t\t\t([1-9][0-9]*/[1-9][0-9]*)?\n\
474
- \t\t\t"
475
- uuid: F25B30BE-0526-4D92-806C-F0D678DDF669
476
- foldingStartMarker: (\{|<<)\s*$
477
- patterns:
478
- - include: "#comments"
479
- - include: "#g_header"
480
- - include: "#groupings"
481
- - include: "#strings"
482
- - include: "#scheme"
483
- - include: "#functions"
484
- foldingStopMarker: (\}|>>)
485
- keyEquivalent: ^~L
486
- comment: "\n\
487
- \t\tThis bundle is, as can easily be seen, far from complete,\n\
488
- \t\tbut it should still be as useful as the Lilypond.app pyobjc\n\
489
- \t\tapplication, which has no syntax coloring, no way to do\n\
490
- \t\tsnippets, and pretty much no interesting functionality at\n\
491
- \t\tall, other than a \"Run\" menu option. :)\n\
492
- \t"