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