├── .buildpath ├── .gitignore ├── .gitmodules ├── .project ├── .settings ├── .jsdtscope ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── crayon-syntax-highlighter.sublime-project ├── crayon_fonts.class.php ├── crayon_formatter.class.php ├── crayon_highlighter.class.php ├── crayon_langs.class.php ├── crayon_parser.class.php ├── crayon_resource.class.php ├── crayon_settings.class.php ├── crayon_settings_wp.class.php ├── crayon_themes.class.php ├── crayon_wp.class.php ├── css ├── images │ ├── crayon_logo.png │ ├── crayon_logo_square.png │ ├── crayon_tinymce.png │ ├── docs.png │ ├── donate.png │ ├── facebook.png │ ├── github.png │ ├── google.png │ ├── theme_editor.png │ ├── thumb_horizontal.png │ ├── thumb_vertical.png │ ├── toolbar │ │ ├── buttons.png │ │ └── buttons@2x.png │ ├── track_horizontal.png │ ├── track_vertical.png │ ├── twitter.png │ └── wordpress-blue.png ├── min │ └── crayon.min.css ├── minify.sh └── src │ ├── admin_style.css │ ├── crayon_style.css │ └── global_style.css ├── fonts ├── adobe-source-sans.css ├── adobe-source-sans │ ├── SourceSansPro-Semibold.eot │ ├── SourceSansPro-Semibold.otf.woff │ ├── SourceSansPro-Semibold.svg │ └── SourceSansPro-Semibold.ttf.woff ├── arial.css ├── consolas.css ├── consolas │ ├── consolas-webfont.eot │ ├── consolas-webfont.svg │ ├── consolas-webfont.ttf │ └── consolas-webfont.woff ├── courier-new.css ├── droid-sans-mono.css ├── droid-sans-mono │ ├── droid-sans-mono-webfont.eot │ ├── droid-sans-mono-webfont.svg │ ├── droid-sans-mono-webfont.ttf │ └── droid-sans-mono-webfont.woff ├── inconsolata.css ├── inconsolata │ ├── inconsolata-webfont.eot │ ├── inconsolata-webfont.svg │ ├── inconsolata-webfont.ttf │ └── inconsolata-webfont.woff ├── liberation-mono.css ├── liberation-mono │ ├── liberation-mono-webfont.eot │ ├── liberation-mono-webfont.svg │ ├── liberation-mono-webfont.ttf │ └── liberation-mono-webfont.woff ├── monaco.css ├── monaco │ ├── monaco-webfont.eot │ ├── monaco-webfont.svg │ ├── monaco-webfont.ttf │ └── monaco-webfont.woff ├── monospace.css ├── sourcecodepro.css ├── sourcecodepro │ ├── sourcecodepro-regular-webfont.eot │ ├── sourcecodepro-regular-webfont.svg │ ├── sourcecodepro-regular-webfont.ttf │ ├── sourcecodepro-regular-webfont.woff │ └── sourcecodepro-regular-webfont.woff2 ├── tahoma.css ├── times.css ├── ubuntu-mono.css ├── ubuntu-mono │ ├── ubuntu-mono-webfont.eot │ ├── ubuntu-mono-webfont.svg │ ├── ubuntu-mono-webfont.ttf │ └── ubuntu-mono-webfont.woff └── verdana.css ├── global.php ├── js ├── min │ ├── crayon.min.js │ └── crayon.te.min.js ├── minify.sh ├── src │ ├── crayon.js │ ├── crayon_admin.js │ ├── cssjson.js │ ├── jquery.popup.js │ └── util.js └── tinycolor-min.js ├── langs ├── 1c-kod │ ├── 1c-kod.txt │ ├── operator.txt │ └── statement.txt ├── 1c-zapros │ ├── 1c-zapros.txt │ ├── operator.txt │ ├── statement.txt │ └── symbol.txt ├── abap │ ├── abap.txt │ ├── operator.txt │ ├── reserved.txt │ └── statement.txt ├── aliases.txt ├── amigados │ ├── amigados.txt │ ├── commands.txt │ ├── symbols.txt │ └── wildcards.txt ├── apache │ ├── apache.txt │ ├── reserved.txt │ └── type.txt ├── applescript │ ├── applescript.txt │ ├── entity.txt │ ├── reserved.txt │ └── statement.txt ├── arduino │ ├── arduino.txt │ ├── enity.txt │ ├── keywords.txt │ ├── modifier.txt │ ├── reserved.txt │ ├── reserved2.txt │ ├── statement.txt │ └── types.txt ├── as │ ├── as.txt │ ├── library.txt │ ├── reserved.txt │ └── statement.txt ├── asm │ └── asm.txt ├── asp │ ├── asp.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── autoit │ ├── autoit.txt │ ├── reserved.txt │ └── statement.txt ├── batch │ ├── batch.txt │ ├── builtins.txt │ └── keywords.txt ├── c# │ ├── c#.txt │ ├── modifier.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── c++ │ ├── c++.txt │ ├── modifier.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── c │ ├── c.txt │ ├── modifier.txt │ ├── reserved.txt │ └── type.txt ├── clojure │ ├── clojure.txt │ ├── hof.txt │ ├── special.txt │ ├── statement.txt │ ├── type.txt │ └── vars.txt ├── coffee │ ├── coffee.txt │ ├── exception.txt │ ├── function.txt │ ├── modifier.txt │ ├── module.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── css │ └── css.txt ├── default │ ├── default.txt │ ├── modifier.txt │ ├── operator.txt │ ├── reserved.txt │ ├── statement.txt │ ├── symbol.txt │ └── type.txt ├── delimiters.txt ├── delphi │ ├── delphi.txt │ ├── modifier.txt │ ├── operator.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── diff │ └── diff.txt ├── dws │ ├── dws.txt │ ├── keywords.txt │ ├── modifier.txt │ ├── operator.txt │ └── type.txt ├── erlang │ ├── erlang.txt │ ├── modifier.txt │ ├── operators.txt │ └── statements.txt ├── extensions.txt ├── go │ ├── go.txt │ ├── reserved.txt │ └── statement.txt ├── haskell │ ├── haskell.txt │ ├── reserved.txt │ └── type.txt ├── ilogic │ ├── ilogic.txt │ ├── modifier.txt │ ├── operator.txt │ ├── reserved.txt │ ├── special.txt │ ├── statement.txt │ └── type.txt ├── ini │ └── ini.txt ├── java │ ├── java.txt │ ├── modifier.txt │ └── reserved.txt ├── js │ ├── js.txt │ └── reserved.txt ├── kl │ ├── constant.txt │ ├── kl.txt │ ├── module.txt │ ├── reserved.txt │ ├── statement.txt │ ├── type.txt │ └── variable.txt ├── less │ ├── less.txt │ └── notation.txt ├── lisp │ ├── lisp.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── lua │ ├── lua.txt │ ├── reserved.txt │ └── statement.txt ├── matlab │ ├── matlab.txt │ ├── reserved.txt │ └── statement.txt ├── mel │ ├── constant.txt │ ├── mel.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── miva │ └── miva.txt ├── monkey │ ├── modifier.txt │ ├── monkey.txt │ ├── operator.txt │ ├── reserved.txt │ └── statement.txt ├── mysql │ ├── built.in.func.txt │ ├── mysql.txt │ ├── operator.txt │ ├── reserved.txt │ ├── statement.txt │ ├── type.txt │ └── variable.txt ├── objc │ ├── constant.txt │ ├── modifier.txt │ ├── modifier_at.txt │ ├── objc.txt │ ├── reserved.txt │ ├── reserved_at.txt │ ├── statement.txt │ ├── statement_at.txt │ └── type.txt ├── ocaml │ ├── function.txt │ ├── ocaml.txt │ ├── operator.txt │ ├── reserved.txt │ └── type.txt ├── papyrus │ ├── papyrus.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── perl │ ├── compile.txt │ ├── perl.txt │ ├── reserved.txt │ └── statement.txt ├── pgsql │ ├── built.in.func.txt │ ├── operator.txt │ ├── pgsql.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── php │ ├── compile.txt │ ├── construct.txt │ ├── php.txt │ └── reserved.txt ├── plsql │ ├── catalog.txt │ ├── function.txt │ ├── operator.txt │ ├── plsql.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── ps │ ├── ps.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── python │ ├── exception.txt │ ├── function.txt │ ├── modifier.txt │ ├── module.txt │ ├── python.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── r │ ├── r.txt │ ├── reserved.txt │ ├── statement.txt │ └── type.txt ├── readme.md ├── reg │ ├── operator.txt │ ├── reg.txt │ ├── rootkeys.txt │ ├── type.txt │ └── version.txt ├── ruby │ ├── constant.txt │ ├── exception.txt │ ├── library.txt │ ├── modifier.txt │ ├── module.txt │ ├── operator.txt │ ├── reserved.txt │ ├── ruby.txt │ ├── statement.txt │ └── type.txt ├── rust │ ├── modifier.txt │ ├── reserved.txt │ ├── rust.txt │ ├── statement.txt │ └── type.txt ├── sass │ └── sass.txt ├── scala │ ├── modifier.txt │ ├── reserved.txt │ └── scala.txt ├── scheme │ ├── entity.txt │ ├── keyword.txt │ └── scheme.txt ├── sh │ ├── reserved.txt │ ├── sh.txt │ └── statement.txt ├── swift │ ├── modifier.txt │ ├── operator.txt │ ├── reserved.txt │ ├── swift.txt │ └── type.txt ├── tex │ └── tex.txt ├── tsql │ ├── keyword.txt │ ├── operator.txt │ ├── procedure.txt │ ├── tsql.txt │ └── type.txt ├── vb │ ├── modifier.txt │ ├── reserved.txt │ ├── statement.txt │ ├── type.txt │ └── vb.txt ├── verilog │ ├── modifier.txt │ ├── reserved.txt │ ├── statement.txt │ ├── type.txt │ └── verilog.txt ├── vim │ ├── statement.txt │ └── vim.txt ├── xhtml │ └── xhtml.txt ├── yaml │ ├── operator.txt │ └── yaml.txt └── zsh │ ├── modifier.txt │ ├── reserved.txt │ ├── statement.txt │ ├── type.txt │ └── zsh.txt ├── license.txt ├── readme.md ├── readme.txt ├── screenshots ├── screenshot-1.png ├── screenshot-2.png ├── screenshot-3.png ├── screenshot-4.png └── screenshot-5.png ├── themes ├── 1c-kod │ └── 1c-kod.css ├── 1c-zapros │ └── 1c-zapros.css ├── 809finest │ └── 809finest.css ├── ado │ └── ado.css ├── amity │ └── amity.css ├── arduino-ide │ └── arduino-ide.css ├── bncplusplus │ └── bncplusplus.css ├── capacitacionti │ └── capacitacionti.css ├── cg-cookie │ └── cg-cookie.css ├── cisco-router │ └── cisco-router.css ├── classic │ └── classic.css ├── coda-special-board │ └── coda-special-board.css ├── coy │ └── coy.css ├── dark-terminal │ └── dark-terminal.css ├── eclipse │ └── eclipse.css ├── epicgeeks │ ├── epicgeeks.css │ └── images │ │ ├── code.gif │ │ ├── copy.gif │ │ ├── list.gif │ │ └── pop.gif ├── familiar │ └── familiar.css ├── feeldesign │ └── feeldesign.css ├── flatui-light │ └── flatui-light.css ├── github │ └── github.css ├── idle │ └── idle.css ├── inlellij-idea │ └── inlellij-idea.css ├── iris-vfx │ └── iris-vfx.css ├── kaderu │ └── kaderu.css ├── kayote │ └── kayote.css ├── light-abite │ └── light-abite.css ├── mirc-dark │ └── mirc-dark.css ├── mm-dark-blue │ └── mm-dark-blue.css ├── monokai │ └── monokai.css ├── neon │ └── neon.css ├── obsidian-light │ └── obsidian-light.css ├── obsidian │ └── obsidian.css ├── onderka15 │ └── onderka15.css ├── orange-code │ └── orange-code.css ├── plain-white │ └── plain-white.css ├── powershell-ise │ └── powershell-ise.css ├── powershell │ └── powershell.css ├── prism-like │ └── prism-like.css ├── pspad │ └── pspad.css ├── qtcreator │ └── qtcreator.css ├── raygun │ └── raygun.css ├── secrets-of-rock │ └── secrets-of-rock.css ├── shell-default │ └── shell-default.css ├── solarized-dark │ └── solarized-dark.css ├── solarized-light │ └── solarized-light.css ├── son-of-obsidian │ └── son-of-obsidian.css ├── ssms2012 │ └── ssms2012.css ├── sublime-text │ └── sublime-text.css ├── terminal │ └── terminal.css ├── tomorrow-night │ └── tomorrow-night.css ├── tomorrow │ └── tomorrow.css ├── turnwall │ └── turnwall.css ├── twilight │ └── twilight.css ├── visual-assist │ └── visual-assist.css ├── vs2012-black │ └── vs2012-black.css ├── vs2012 │ └── vs2012.css ├── x3info │ └── x3info.css └── xcode │ └── xcode.css ├── trans ├── crayon-syntax-highlighter-ar_AR.mo ├── crayon-syntax-highlighter-ar_AR.po ├── crayon-syntax-highlighter-de_DE.mo ├── crayon-syntax-highlighter-de_DE.po ├── crayon-syntax-highlighter-es_ES.mo ├── crayon-syntax-highlighter-es_ES.po ├── crayon-syntax-highlighter-fa_IR.mo ├── crayon-syntax-highlighter-fa_IR.po ├── crayon-syntax-highlighter-fi.mo ├── crayon-syntax-highlighter-fi.po ├── crayon-syntax-highlighter-fr_FR.mo ├── crayon-syntax-highlighter-fr_FR.po ├── crayon-syntax-highlighter-it_IT.mo ├── crayon-syntax-highlighter-it_IT.po ├── crayon-syntax-highlighter-ja.mo ├── crayon-syntax-highlighter-ja.po ├── crayon-syntax-highlighter-ko_KR.mo ├── crayon-syntax-highlighter-ko_KR.po ├── crayon-syntax-highlighter-lt_LT.mo ├── crayon-syntax-highlighter-lt_LT.po ├── crayon-syntax-highlighter-nb_NO.mo ├── crayon-syntax-highlighter-nb_NO.po ├── crayon-syntax-highlighter-nl_NL.mo ├── crayon-syntax-highlighter-nl_NL.po ├── crayon-syntax-highlighter-pl_PL.mo ├── crayon-syntax-highlighter-pl_PL.po ├── crayon-syntax-highlighter-pt_BR.mo ├── crayon-syntax-highlighter-pt_BR.po ├── crayon-syntax-highlighter-ru_RU.mo ├── crayon-syntax-highlighter-ru_RU.po ├── crayon-syntax-highlighter-sk_SK.mo ├── crayon-syntax-highlighter-sk_SK.po ├── crayon-syntax-highlighter-sl_SI.mo ├── crayon-syntax-highlighter-sl_SI.po ├── crayon-syntax-highlighter-ta_MY.mo ├── crayon-syntax-highlighter-ta_MY.po ├── crayon-syntax-highlighter-tr_TR.mo ├── crayon-syntax-highlighter-tr_TR.po ├── crayon-syntax-highlighter-uk_UA.mo ├── crayon-syntax-highlighter-uk_UA.po ├── crayon-syntax-highlighter-zh_CN.mo ├── crayon-syntax-highlighter-zh_CN.po ├── crayon-syntax-highlighter-zh_TW.mo └── crayon-syntax-highlighter-zh_TW.po └── util ├── crayon_log.class.php ├── crayon_timer.class.php ├── crayon_util.class.php ├── external_use.php ├── lines_to_array.rb ├── lines_to_regex.rb ├── minify.sh ├── sample ├── abap.txt ├── apache.txt ├── applescript.txt ├── arduino.txt ├── as.txt ├── asm.txt ├── asp.txt ├── autoit.txt ├── batch.txt ├── c#.txt ├── c++.txt ├── c.txt ├── clojure.txt ├── coffee.txt ├── css.txt ├── default.txt ├── delphi.txt ├── diff.txt ├── dws.txt ├── erlang.txt ├── go.txt ├── haskell.txt ├── ilogic.txt ├── ini.txt ├── java.txt ├── js.txt ├── kl.txt ├── less.txt ├── lisp.txt ├── lua.txt ├── matlab.txt ├── mel.txt ├── monkey.txt ├── mysql.txt ├── objc.txt ├── perl.txt ├── pgsql.txt ├── php.txt ├── plsql.txt ├── ps.txt ├── python.txt ├── r.txt ├── reg.txt ├── ruby.txt ├── rust.txt ├── sass.txt ├── scala.txt ├── scheme.txt ├── sh.txt ├── swift.txt ├── tex.txt ├── tsql.txt ├── vb.txt ├── vbnet.txt ├── vim.txt ├── xhtml.txt ├── yaml.txt └── zsh.txt ├── scraper ├── file_concat.py ├── keyword_join.py ├── keyword_scraper.py ├── keyword_scraper_tool.py └── readme.txt ├── settings_list.txt ├── tag-editor ├── colorbox │ ├── colorbox.css │ └── jquery.colorbox-min.js ├── crayon_qt.js ├── crayon_tag_editor.js ├── crayon_tag_editor_wp.class.php ├── crayon_te.css └── crayon_tinymce.js ├── theme-editor ├── images │ ├── button-pressed.png │ ├── button.png │ ├── frame.png │ ├── highlighting.png │ ├── information.png │ ├── lines.png │ ├── numbers.png │ ├── title.png │ └── toolbar.png ├── theme_editor.css ├── theme_editor.js └── theme_editor.php └── touch.txt /.buildpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/.buildpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/.gitmodules -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/.project -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.JRE_CONTAINER -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Global -------------------------------------------------------------------------------- /crayon-syntax-highlighter.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/crayon-syntax-highlighter.sublime-project -------------------------------------------------------------------------------- /crayon_fonts.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/crayon_fonts.class.php -------------------------------------------------------------------------------- /crayon_formatter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/crayon_formatter.class.php -------------------------------------------------------------------------------- /crayon_highlighter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/crayon_highlighter.class.php -------------------------------------------------------------------------------- /crayon_langs.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/crayon_langs.class.php -------------------------------------------------------------------------------- /crayon_parser.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/crayon_parser.class.php -------------------------------------------------------------------------------- /crayon_resource.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/crayon_resource.class.php -------------------------------------------------------------------------------- /crayon_settings.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/crayon_settings.class.php -------------------------------------------------------------------------------- /crayon_settings_wp.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/crayon_settings_wp.class.php -------------------------------------------------------------------------------- /crayon_themes.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/crayon_themes.class.php -------------------------------------------------------------------------------- /crayon_wp.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/crayon_wp.class.php -------------------------------------------------------------------------------- /css/images/crayon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/crayon_logo.png -------------------------------------------------------------------------------- /css/images/crayon_logo_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/crayon_logo_square.png -------------------------------------------------------------------------------- /css/images/crayon_tinymce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/crayon_tinymce.png -------------------------------------------------------------------------------- /css/images/docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/docs.png -------------------------------------------------------------------------------- /css/images/donate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/donate.png -------------------------------------------------------------------------------- /css/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/facebook.png -------------------------------------------------------------------------------- /css/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/github.png -------------------------------------------------------------------------------- /css/images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/google.png -------------------------------------------------------------------------------- /css/images/theme_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/theme_editor.png -------------------------------------------------------------------------------- /css/images/thumb_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/thumb_horizontal.png -------------------------------------------------------------------------------- /css/images/thumb_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/thumb_vertical.png -------------------------------------------------------------------------------- /css/images/toolbar/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/toolbar/buttons.png -------------------------------------------------------------------------------- /css/images/toolbar/buttons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/toolbar/buttons@2x.png -------------------------------------------------------------------------------- /css/images/track_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/track_horizontal.png -------------------------------------------------------------------------------- /css/images/track_vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/track_vertical.png -------------------------------------------------------------------------------- /css/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/twitter.png -------------------------------------------------------------------------------- /css/images/wordpress-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/images/wordpress-blue.png -------------------------------------------------------------------------------- /css/min/crayon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/min/crayon.min.css -------------------------------------------------------------------------------- /css/minify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/minify.sh -------------------------------------------------------------------------------- /css/src/admin_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/src/admin_style.css -------------------------------------------------------------------------------- /css/src/crayon_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/src/crayon_style.css -------------------------------------------------------------------------------- /css/src/global_style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/css/src/global_style.css -------------------------------------------------------------------------------- /fonts/adobe-source-sans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/adobe-source-sans.css -------------------------------------------------------------------------------- /fonts/adobe-source-sans/SourceSansPro-Semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/adobe-source-sans/SourceSansPro-Semibold.eot -------------------------------------------------------------------------------- /fonts/adobe-source-sans/SourceSansPro-Semibold.otf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/adobe-source-sans/SourceSansPro-Semibold.otf.woff -------------------------------------------------------------------------------- /fonts/adobe-source-sans/SourceSansPro-Semibold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/adobe-source-sans/SourceSansPro-Semibold.svg -------------------------------------------------------------------------------- /fonts/adobe-source-sans/SourceSansPro-Semibold.ttf.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/adobe-source-sans/SourceSansPro-Semibold.ttf.woff -------------------------------------------------------------------------------- /fonts/arial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/arial.css -------------------------------------------------------------------------------- /fonts/consolas.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/consolas.css -------------------------------------------------------------------------------- /fonts/consolas/consolas-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/consolas/consolas-webfont.eot -------------------------------------------------------------------------------- /fonts/consolas/consolas-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/consolas/consolas-webfont.svg -------------------------------------------------------------------------------- /fonts/consolas/consolas-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/consolas/consolas-webfont.ttf -------------------------------------------------------------------------------- /fonts/consolas/consolas-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/consolas/consolas-webfont.woff -------------------------------------------------------------------------------- /fonts/courier-new.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/courier-new.css -------------------------------------------------------------------------------- /fonts/droid-sans-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/droid-sans-mono.css -------------------------------------------------------------------------------- /fonts/droid-sans-mono/droid-sans-mono-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/droid-sans-mono/droid-sans-mono-webfont.eot -------------------------------------------------------------------------------- /fonts/droid-sans-mono/droid-sans-mono-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/droid-sans-mono/droid-sans-mono-webfont.svg -------------------------------------------------------------------------------- /fonts/droid-sans-mono/droid-sans-mono-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/droid-sans-mono/droid-sans-mono-webfont.ttf -------------------------------------------------------------------------------- /fonts/droid-sans-mono/droid-sans-mono-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/droid-sans-mono/droid-sans-mono-webfont.woff -------------------------------------------------------------------------------- /fonts/inconsolata.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/inconsolata.css -------------------------------------------------------------------------------- /fonts/inconsolata/inconsolata-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/inconsolata/inconsolata-webfont.eot -------------------------------------------------------------------------------- /fonts/inconsolata/inconsolata-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/inconsolata/inconsolata-webfont.svg -------------------------------------------------------------------------------- /fonts/inconsolata/inconsolata-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/inconsolata/inconsolata-webfont.ttf -------------------------------------------------------------------------------- /fonts/inconsolata/inconsolata-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/inconsolata/inconsolata-webfont.woff -------------------------------------------------------------------------------- /fonts/liberation-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/liberation-mono.css -------------------------------------------------------------------------------- /fonts/liberation-mono/liberation-mono-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/liberation-mono/liberation-mono-webfont.eot -------------------------------------------------------------------------------- /fonts/liberation-mono/liberation-mono-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/liberation-mono/liberation-mono-webfont.svg -------------------------------------------------------------------------------- /fonts/liberation-mono/liberation-mono-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/liberation-mono/liberation-mono-webfont.ttf -------------------------------------------------------------------------------- /fonts/liberation-mono/liberation-mono-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/liberation-mono/liberation-mono-webfont.woff -------------------------------------------------------------------------------- /fonts/monaco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/monaco.css -------------------------------------------------------------------------------- /fonts/monaco/monaco-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/monaco/monaco-webfont.eot -------------------------------------------------------------------------------- /fonts/monaco/monaco-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/monaco/monaco-webfont.svg -------------------------------------------------------------------------------- /fonts/monaco/monaco-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/monaco/monaco-webfont.ttf -------------------------------------------------------------------------------- /fonts/monaco/monaco-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/monaco/monaco-webfont.woff -------------------------------------------------------------------------------- /fonts/monospace.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/monospace.css -------------------------------------------------------------------------------- /fonts/sourcecodepro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/sourcecodepro.css -------------------------------------------------------------------------------- /fonts/sourcecodepro/sourcecodepro-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/sourcecodepro/sourcecodepro-regular-webfont.eot -------------------------------------------------------------------------------- /fonts/sourcecodepro/sourcecodepro-regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/sourcecodepro/sourcecodepro-regular-webfont.svg -------------------------------------------------------------------------------- /fonts/sourcecodepro/sourcecodepro-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/sourcecodepro/sourcecodepro-regular-webfont.ttf -------------------------------------------------------------------------------- /fonts/sourcecodepro/sourcecodepro-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/sourcecodepro/sourcecodepro-regular-webfont.woff -------------------------------------------------------------------------------- /fonts/sourcecodepro/sourcecodepro-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/sourcecodepro/sourcecodepro-regular-webfont.woff2 -------------------------------------------------------------------------------- /fonts/tahoma.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/tahoma.css -------------------------------------------------------------------------------- /fonts/times.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/times.css -------------------------------------------------------------------------------- /fonts/ubuntu-mono.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/ubuntu-mono.css -------------------------------------------------------------------------------- /fonts/ubuntu-mono/ubuntu-mono-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/ubuntu-mono/ubuntu-mono-webfont.eot -------------------------------------------------------------------------------- /fonts/ubuntu-mono/ubuntu-mono-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/ubuntu-mono/ubuntu-mono-webfont.svg -------------------------------------------------------------------------------- /fonts/ubuntu-mono/ubuntu-mono-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/ubuntu-mono/ubuntu-mono-webfont.ttf -------------------------------------------------------------------------------- /fonts/ubuntu-mono/ubuntu-mono-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/ubuntu-mono/ubuntu-mono-webfont.woff -------------------------------------------------------------------------------- /fonts/verdana.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/fonts/verdana.css -------------------------------------------------------------------------------- /global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/global.php -------------------------------------------------------------------------------- /js/min/crayon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/js/min/crayon.min.js -------------------------------------------------------------------------------- /js/min/crayon.te.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/js/min/crayon.te.min.js -------------------------------------------------------------------------------- /js/minify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/js/minify.sh -------------------------------------------------------------------------------- /js/src/crayon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/js/src/crayon.js -------------------------------------------------------------------------------- /js/src/crayon_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/js/src/crayon_admin.js -------------------------------------------------------------------------------- /js/src/cssjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/js/src/cssjson.js -------------------------------------------------------------------------------- /js/src/jquery.popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/js/src/jquery.popup.js -------------------------------------------------------------------------------- /js/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/js/src/util.js -------------------------------------------------------------------------------- /js/tinycolor-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/js/tinycolor-min.js -------------------------------------------------------------------------------- /langs/1c-kod/1c-kod.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/1c-kod/1c-kod.txt -------------------------------------------------------------------------------- /langs/1c-kod/operator.txt: -------------------------------------------------------------------------------- 1 | # 2 | ; 3 | ( 4 | ) 5 | [ 6 | ] 7 | , 8 | . -------------------------------------------------------------------------------- /langs/1c-kod/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/1c-kod/statement.txt -------------------------------------------------------------------------------- /langs/1c-zapros/1c-zapros.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/1c-zapros/1c-zapros.txt -------------------------------------------------------------------------------- /langs/1c-zapros/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/1c-zapros/operator.txt -------------------------------------------------------------------------------- /langs/1c-zapros/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/1c-zapros/statement.txt -------------------------------------------------------------------------------- /langs/1c-zapros/symbol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/1c-zapros/symbol.txt -------------------------------------------------------------------------------- /langs/abap/abap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/abap/abap.txt -------------------------------------------------------------------------------- /langs/abap/operator.txt: -------------------------------------------------------------------------------- 1 | ( 2 | ) 3 | { 4 | } 5 | [ 6 | ] 7 | + 8 | - 9 | * 10 | / 11 | ! 12 | % 13 | ^ 14 | & 15 | : 16 | . 17 | >= 18 | <= 19 | < 20 | > 21 | = 22 | ?= -------------------------------------------------------------------------------- /langs/abap/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/abap/reserved.txt -------------------------------------------------------------------------------- /langs/abap/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/abap/statement.txt -------------------------------------------------------------------------------- /langs/aliases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/aliases.txt -------------------------------------------------------------------------------- /langs/amigados/amigados.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/amigados/amigados.txt -------------------------------------------------------------------------------- /langs/amigados/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/amigados/commands.txt -------------------------------------------------------------------------------- /langs/amigados/symbols.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/amigados/symbols.txt -------------------------------------------------------------------------------- /langs/amigados/wildcards.txt: -------------------------------------------------------------------------------- 1 | # 2 | ? 3 | ( 4 | ) 5 | | 6 | ~ 7 | % 8 | [ 9 | ] 10 | - 11 | ' -------------------------------------------------------------------------------- /langs/apache/apache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/apache/apache.txt -------------------------------------------------------------------------------- /langs/apache/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/apache/reserved.txt -------------------------------------------------------------------------------- /langs/apache/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/apache/type.txt -------------------------------------------------------------------------------- /langs/applescript/applescript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/applescript/applescript.txt -------------------------------------------------------------------------------- /langs/applescript/entity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/applescript/entity.txt -------------------------------------------------------------------------------- /langs/applescript/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/applescript/reserved.txt -------------------------------------------------------------------------------- /langs/applescript/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/applescript/statement.txt -------------------------------------------------------------------------------- /langs/arduino/arduino.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/arduino/arduino.txt -------------------------------------------------------------------------------- /langs/arduino/enity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/arduino/enity.txt -------------------------------------------------------------------------------- /langs/arduino/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/arduino/keywords.txt -------------------------------------------------------------------------------- /langs/arduino/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/arduino/modifier.txt -------------------------------------------------------------------------------- /langs/arduino/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/arduino/reserved.txt -------------------------------------------------------------------------------- /langs/arduino/reserved2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/arduino/reserved2.txt -------------------------------------------------------------------------------- /langs/arduino/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/arduino/statement.txt -------------------------------------------------------------------------------- /langs/arduino/types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/arduino/types.txt -------------------------------------------------------------------------------- /langs/as/as.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/as/as.txt -------------------------------------------------------------------------------- /langs/as/library.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/as/library.txt -------------------------------------------------------------------------------- /langs/as/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/as/reserved.txt -------------------------------------------------------------------------------- /langs/as/statement.txt: -------------------------------------------------------------------------------- 1 | with 2 | -------------------------------------------------------------------------------- /langs/asm/asm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/asm/asm.txt -------------------------------------------------------------------------------- /langs/asp/asp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/asp/asp.txt -------------------------------------------------------------------------------- /langs/asp/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/asp/reserved.txt -------------------------------------------------------------------------------- /langs/asp/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/asp/statement.txt -------------------------------------------------------------------------------- /langs/asp/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/asp/type.txt -------------------------------------------------------------------------------- /langs/autoit/autoit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/autoit/autoit.txt -------------------------------------------------------------------------------- /langs/autoit/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/autoit/reserved.txt -------------------------------------------------------------------------------- /langs/autoit/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/autoit/statement.txt -------------------------------------------------------------------------------- /langs/batch/batch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/batch/batch.txt -------------------------------------------------------------------------------- /langs/batch/builtins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/batch/builtins.txt -------------------------------------------------------------------------------- /langs/batch/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/batch/keywords.txt -------------------------------------------------------------------------------- /langs/c#/c#.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c#/c#.txt -------------------------------------------------------------------------------- /langs/c#/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c#/modifier.txt -------------------------------------------------------------------------------- /langs/c#/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c#/reserved.txt -------------------------------------------------------------------------------- /langs/c#/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c#/statement.txt -------------------------------------------------------------------------------- /langs/c#/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c#/type.txt -------------------------------------------------------------------------------- /langs/c++/c++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c++/c++.txt -------------------------------------------------------------------------------- /langs/c++/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c++/modifier.txt -------------------------------------------------------------------------------- /langs/c++/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c++/reserved.txt -------------------------------------------------------------------------------- /langs/c++/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c++/statement.txt -------------------------------------------------------------------------------- /langs/c++/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c++/type.txt -------------------------------------------------------------------------------- /langs/c/c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c/c.txt -------------------------------------------------------------------------------- /langs/c/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c/modifier.txt -------------------------------------------------------------------------------- /langs/c/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c/reserved.txt -------------------------------------------------------------------------------- /langs/c/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/c/type.txt -------------------------------------------------------------------------------- /langs/clojure/clojure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/clojure/clojure.txt -------------------------------------------------------------------------------- /langs/clojure/hof.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/clojure/hof.txt -------------------------------------------------------------------------------- /langs/clojure/special.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/clojure/special.txt -------------------------------------------------------------------------------- /langs/clojure/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/clojure/statement.txt -------------------------------------------------------------------------------- /langs/clojure/type.txt: -------------------------------------------------------------------------------- 1 | vector 2 | map-hash 3 | list 4 | atom 5 | seq -------------------------------------------------------------------------------- /langs/clojure/vars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/clojure/vars.txt -------------------------------------------------------------------------------- /langs/coffee/coffee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/coffee/coffee.txt -------------------------------------------------------------------------------- /langs/coffee/exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/coffee/exception.txt -------------------------------------------------------------------------------- /langs/coffee/function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/coffee/function.txt -------------------------------------------------------------------------------- /langs/coffee/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/coffee/modifier.txt -------------------------------------------------------------------------------- /langs/coffee/module.txt: -------------------------------------------------------------------------------- 1 | console 2 | document 3 | export 4 | -------------------------------------------------------------------------------- /langs/coffee/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/coffee/reserved.txt -------------------------------------------------------------------------------- /langs/coffee/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/coffee/statement.txt -------------------------------------------------------------------------------- /langs/coffee/type.txt: -------------------------------------------------------------------------------- 1 | void 2 | -------------------------------------------------------------------------------- /langs/css/css.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/css/css.txt -------------------------------------------------------------------------------- /langs/default/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/default/default.txt -------------------------------------------------------------------------------- /langs/default/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/default/modifier.txt -------------------------------------------------------------------------------- /langs/default/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/default/operator.txt -------------------------------------------------------------------------------- /langs/default/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/default/reserved.txt -------------------------------------------------------------------------------- /langs/default/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/default/statement.txt -------------------------------------------------------------------------------- /langs/default/symbol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/default/symbol.txt -------------------------------------------------------------------------------- /langs/default/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/default/type.txt -------------------------------------------------------------------------------- /langs/delimiters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/delimiters.txt -------------------------------------------------------------------------------- /langs/delphi/delphi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/delphi/delphi.txt -------------------------------------------------------------------------------- /langs/delphi/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/delphi/modifier.txt -------------------------------------------------------------------------------- /langs/delphi/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/delphi/operator.txt -------------------------------------------------------------------------------- /langs/delphi/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/delphi/reserved.txt -------------------------------------------------------------------------------- /langs/delphi/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/delphi/statement.txt -------------------------------------------------------------------------------- /langs/delphi/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/delphi/type.txt -------------------------------------------------------------------------------- /langs/diff/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/diff/diff.txt -------------------------------------------------------------------------------- /langs/dws/dws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/dws/dws.txt -------------------------------------------------------------------------------- /langs/dws/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/dws/keywords.txt -------------------------------------------------------------------------------- /langs/dws/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/dws/modifier.txt -------------------------------------------------------------------------------- /langs/dws/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/dws/operator.txt -------------------------------------------------------------------------------- /langs/dws/type.txt: -------------------------------------------------------------------------------- 1 | Integer 2 | Float 3 | Char 4 | String 5 | Boolean 6 | Array 7 | Record 8 | Variant -------------------------------------------------------------------------------- /langs/erlang/erlang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/erlang/erlang.txt -------------------------------------------------------------------------------- /langs/erlang/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/erlang/modifier.txt -------------------------------------------------------------------------------- /langs/erlang/operators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/erlang/operators.txt -------------------------------------------------------------------------------- /langs/erlang/statements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/erlang/statements.txt -------------------------------------------------------------------------------- /langs/extensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/extensions.txt -------------------------------------------------------------------------------- /langs/go/go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/go/go.txt -------------------------------------------------------------------------------- /langs/go/reserved.txt: -------------------------------------------------------------------------------- 1 | func 2 | type 3 | import 4 | -------------------------------------------------------------------------------- /langs/go/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/go/statement.txt -------------------------------------------------------------------------------- /langs/haskell/haskell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/haskell/haskell.txt -------------------------------------------------------------------------------- /langs/haskell/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/haskell/reserved.txt -------------------------------------------------------------------------------- /langs/haskell/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/haskell/type.txt -------------------------------------------------------------------------------- /langs/ilogic/ilogic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ilogic/ilogic.txt -------------------------------------------------------------------------------- /langs/ilogic/modifier.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /langs/ilogic/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ilogic/operator.txt -------------------------------------------------------------------------------- /langs/ilogic/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ilogic/reserved.txt -------------------------------------------------------------------------------- /langs/ilogic/special.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ilogic/special.txt -------------------------------------------------------------------------------- /langs/ilogic/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ilogic/statement.txt -------------------------------------------------------------------------------- /langs/ilogic/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ilogic/type.txt -------------------------------------------------------------------------------- /langs/ini/ini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ini/ini.txt -------------------------------------------------------------------------------- /langs/java/java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/java/java.txt -------------------------------------------------------------------------------- /langs/java/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/java/modifier.txt -------------------------------------------------------------------------------- /langs/java/reserved.txt: -------------------------------------------------------------------------------- 1 | import 2 | module 3 | requires 4 | -------------------------------------------------------------------------------- /langs/js/js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/js/js.txt -------------------------------------------------------------------------------- /langs/js/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/js/reserved.txt -------------------------------------------------------------------------------- /langs/kl/constant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/kl/constant.txt -------------------------------------------------------------------------------- /langs/kl/kl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/kl/kl.txt -------------------------------------------------------------------------------- /langs/kl/module.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/kl/module.txt -------------------------------------------------------------------------------- /langs/kl/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/kl/reserved.txt -------------------------------------------------------------------------------- /langs/kl/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/kl/statement.txt -------------------------------------------------------------------------------- /langs/kl/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/kl/type.txt -------------------------------------------------------------------------------- /langs/kl/variable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/kl/variable.txt -------------------------------------------------------------------------------- /langs/less/less.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/less/less.txt -------------------------------------------------------------------------------- /langs/less/notation.txt: -------------------------------------------------------------------------------- 1 | media 2 | import 3 | -------------------------------------------------------------------------------- /langs/lisp/lisp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/lisp/lisp.txt -------------------------------------------------------------------------------- /langs/lisp/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/lisp/reserved.txt -------------------------------------------------------------------------------- /langs/lisp/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/lisp/statement.txt -------------------------------------------------------------------------------- /langs/lisp/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/lisp/type.txt -------------------------------------------------------------------------------- /langs/lua/lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/lua/lua.txt -------------------------------------------------------------------------------- /langs/lua/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/lua/reserved.txt -------------------------------------------------------------------------------- /langs/lua/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/lua/statement.txt -------------------------------------------------------------------------------- /langs/matlab/matlab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/matlab/matlab.txt -------------------------------------------------------------------------------- /langs/matlab/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/matlab/reserved.txt -------------------------------------------------------------------------------- /langs/matlab/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/matlab/statement.txt -------------------------------------------------------------------------------- /langs/mel/constant.txt: -------------------------------------------------------------------------------- 1 | false 2 | true 3 | -------------------------------------------------------------------------------- /langs/mel/mel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/mel/mel.txt -------------------------------------------------------------------------------- /langs/mel/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/mel/reserved.txt -------------------------------------------------------------------------------- /langs/mel/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/mel/statement.txt -------------------------------------------------------------------------------- /langs/mel/type.txt: -------------------------------------------------------------------------------- 1 | int 2 | float 3 | string 4 | vector 5 | array 6 | matrix 7 | -------------------------------------------------------------------------------- /langs/miva/miva.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/miva/miva.txt -------------------------------------------------------------------------------- /langs/monkey/modifier.txt: -------------------------------------------------------------------------------- 1 | local 2 | -------------------------------------------------------------------------------- /langs/monkey/monkey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/monkey/monkey.txt -------------------------------------------------------------------------------- /langs/monkey/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/monkey/operator.txt -------------------------------------------------------------------------------- /langs/monkey/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/monkey/reserved.txt -------------------------------------------------------------------------------- /langs/monkey/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/monkey/statement.txt -------------------------------------------------------------------------------- /langs/mysql/built.in.func.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/mysql/built.in.func.txt -------------------------------------------------------------------------------- /langs/mysql/mysql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/mysql/mysql.txt -------------------------------------------------------------------------------- /langs/mysql/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/mysql/operator.txt -------------------------------------------------------------------------------- /langs/mysql/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/mysql/reserved.txt -------------------------------------------------------------------------------- /langs/mysql/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/mysql/statement.txt -------------------------------------------------------------------------------- /langs/mysql/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/mysql/type.txt -------------------------------------------------------------------------------- /langs/mysql/variable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/mysql/variable.txt -------------------------------------------------------------------------------- /langs/objc/constant.txt: -------------------------------------------------------------------------------- 1 | false 2 | true 3 | YES 4 | NO 5 | -------------------------------------------------------------------------------- /langs/objc/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/objc/modifier.txt -------------------------------------------------------------------------------- /langs/objc/modifier_at.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/objc/modifier_at.txt -------------------------------------------------------------------------------- /langs/objc/objc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/objc/objc.txt -------------------------------------------------------------------------------- /langs/objc/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/objc/reserved.txt -------------------------------------------------------------------------------- /langs/objc/reserved_at.txt: -------------------------------------------------------------------------------- 1 | @encode 2 | -------------------------------------------------------------------------------- /langs/objc/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/objc/statement.txt -------------------------------------------------------------------------------- /langs/objc/statement_at.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/objc/statement_at.txt -------------------------------------------------------------------------------- /langs/objc/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/objc/type.txt -------------------------------------------------------------------------------- /langs/ocaml/function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ocaml/function.txt -------------------------------------------------------------------------------- /langs/ocaml/ocaml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ocaml/ocaml.txt -------------------------------------------------------------------------------- /langs/ocaml/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ocaml/operator.txt -------------------------------------------------------------------------------- /langs/ocaml/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ocaml/reserved.txt -------------------------------------------------------------------------------- /langs/ocaml/type.txt: -------------------------------------------------------------------------------- 1 | string 2 | float 3 | unit 4 | bool 5 | char 6 | int 7 | -------------------------------------------------------------------------------- /langs/papyrus/papyrus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/papyrus/papyrus.txt -------------------------------------------------------------------------------- /langs/papyrus/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/papyrus/reserved.txt -------------------------------------------------------------------------------- /langs/papyrus/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/papyrus/statement.txt -------------------------------------------------------------------------------- /langs/papyrus/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/papyrus/type.txt -------------------------------------------------------------------------------- /langs/perl/compile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/perl/compile.txt -------------------------------------------------------------------------------- /langs/perl/perl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/perl/perl.txt -------------------------------------------------------------------------------- /langs/perl/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/perl/reserved.txt -------------------------------------------------------------------------------- /langs/perl/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/perl/statement.txt -------------------------------------------------------------------------------- /langs/pgsql/built.in.func.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/pgsql/built.in.func.txt -------------------------------------------------------------------------------- /langs/pgsql/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/pgsql/operator.txt -------------------------------------------------------------------------------- /langs/pgsql/pgsql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/pgsql/pgsql.txt -------------------------------------------------------------------------------- /langs/pgsql/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/pgsql/reserved.txt -------------------------------------------------------------------------------- /langs/pgsql/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/pgsql/statement.txt -------------------------------------------------------------------------------- /langs/pgsql/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/pgsql/type.txt -------------------------------------------------------------------------------- /langs/php/compile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/php/compile.txt -------------------------------------------------------------------------------- /langs/php/construct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/php/construct.txt -------------------------------------------------------------------------------- /langs/php/php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/php/php.txt -------------------------------------------------------------------------------- /langs/php/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/php/reserved.txt -------------------------------------------------------------------------------- /langs/plsql/catalog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/plsql/catalog.txt -------------------------------------------------------------------------------- /langs/plsql/function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/plsql/function.txt -------------------------------------------------------------------------------- /langs/plsql/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/plsql/operator.txt -------------------------------------------------------------------------------- /langs/plsql/plsql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/plsql/plsql.txt -------------------------------------------------------------------------------- /langs/plsql/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/plsql/reserved.txt -------------------------------------------------------------------------------- /langs/plsql/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/plsql/statement.txt -------------------------------------------------------------------------------- /langs/plsql/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/plsql/type.txt -------------------------------------------------------------------------------- /langs/ps/ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ps/ps.txt -------------------------------------------------------------------------------- /langs/ps/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ps/reserved.txt -------------------------------------------------------------------------------- /langs/ps/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ps/statement.txt -------------------------------------------------------------------------------- /langs/ps/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ps/type.txt -------------------------------------------------------------------------------- /langs/python/exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/python/exception.txt -------------------------------------------------------------------------------- /langs/python/function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/python/function.txt -------------------------------------------------------------------------------- /langs/python/modifier.txt: -------------------------------------------------------------------------------- 1 | global 2 | -------------------------------------------------------------------------------- /langs/python/module.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/python/module.txt -------------------------------------------------------------------------------- /langs/python/python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/python/python.txt -------------------------------------------------------------------------------- /langs/python/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/python/reserved.txt -------------------------------------------------------------------------------- /langs/python/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/python/statement.txt -------------------------------------------------------------------------------- /langs/python/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/python/type.txt -------------------------------------------------------------------------------- /langs/r/r.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/r/r.txt -------------------------------------------------------------------------------- /langs/r/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/r/reserved.txt -------------------------------------------------------------------------------- /langs/r/statement.txt: -------------------------------------------------------------------------------- 1 | repeat 2 | tryCatch 3 | 4 | -------------------------------------------------------------------------------- /langs/r/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/r/type.txt -------------------------------------------------------------------------------- /langs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/readme.md -------------------------------------------------------------------------------- /langs/reg/operator.txt: -------------------------------------------------------------------------------- 1 | = 2 | : -------------------------------------------------------------------------------- /langs/reg/reg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/reg/reg.txt -------------------------------------------------------------------------------- /langs/reg/rootkeys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/reg/rootkeys.txt -------------------------------------------------------------------------------- /langs/reg/type.txt: -------------------------------------------------------------------------------- 1 | dword 2 | hex -------------------------------------------------------------------------------- /langs/reg/version.txt: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | REGEDIT4 -------------------------------------------------------------------------------- /langs/ruby/constant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ruby/constant.txt -------------------------------------------------------------------------------- /langs/ruby/exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ruby/exception.txt -------------------------------------------------------------------------------- /langs/ruby/library.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ruby/library.txt -------------------------------------------------------------------------------- /langs/ruby/modifier.txt: -------------------------------------------------------------------------------- 1 | protected 2 | private 3 | public 4 | -------------------------------------------------------------------------------- /langs/ruby/module.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ruby/module.txt -------------------------------------------------------------------------------- /langs/ruby/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ruby/operator.txt -------------------------------------------------------------------------------- /langs/ruby/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ruby/reserved.txt -------------------------------------------------------------------------------- /langs/ruby/ruby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ruby/ruby.txt -------------------------------------------------------------------------------- /langs/ruby/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ruby/statement.txt -------------------------------------------------------------------------------- /langs/ruby/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/ruby/type.txt -------------------------------------------------------------------------------- /langs/rust/modifier.txt: -------------------------------------------------------------------------------- 1 | mut 2 | priv 3 | pub 4 | static 5 | -------------------------------------------------------------------------------- /langs/rust/reserved.txt: -------------------------------------------------------------------------------- 1 | fn 2 | let 3 | use 4 | -------------------------------------------------------------------------------- /langs/rust/rust.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/rust/rust.txt -------------------------------------------------------------------------------- /langs/rust/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/rust/statement.txt -------------------------------------------------------------------------------- /langs/rust/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/rust/type.txt -------------------------------------------------------------------------------- /langs/sass/sass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/sass/sass.txt -------------------------------------------------------------------------------- /langs/scala/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/scala/modifier.txt -------------------------------------------------------------------------------- /langs/scala/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/scala/reserved.txt -------------------------------------------------------------------------------- /langs/scala/scala.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/scala/scala.txt -------------------------------------------------------------------------------- /langs/scheme/entity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/scheme/entity.txt -------------------------------------------------------------------------------- /langs/scheme/keyword.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/scheme/keyword.txt -------------------------------------------------------------------------------- /langs/scheme/scheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/scheme/scheme.txt -------------------------------------------------------------------------------- /langs/sh/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/sh/reserved.txt -------------------------------------------------------------------------------- /langs/sh/sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/sh/sh.txt -------------------------------------------------------------------------------- /langs/sh/statement.txt: -------------------------------------------------------------------------------- 1 | until 2 | esac 3 | done 4 | elif 5 | fi 6 | -------------------------------------------------------------------------------- /langs/swift/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/swift/modifier.txt -------------------------------------------------------------------------------- /langs/swift/operator.txt: -------------------------------------------------------------------------------- 1 | ... 2 | .. 3 | -------------------------------------------------------------------------------- /langs/swift/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/swift/reserved.txt -------------------------------------------------------------------------------- /langs/swift/swift.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/swift/swift.txt -------------------------------------------------------------------------------- /langs/swift/type.txt: -------------------------------------------------------------------------------- 1 | Double 2 | String 3 | Float 4 | Int 5 | -------------------------------------------------------------------------------- /langs/tex/tex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/tex/tex.txt -------------------------------------------------------------------------------- /langs/tsql/keyword.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/tsql/keyword.txt -------------------------------------------------------------------------------- /langs/tsql/operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/tsql/operator.txt -------------------------------------------------------------------------------- /langs/tsql/procedure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/tsql/procedure.txt -------------------------------------------------------------------------------- /langs/tsql/tsql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/tsql/tsql.txt -------------------------------------------------------------------------------- /langs/tsql/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/tsql/type.txt -------------------------------------------------------------------------------- /langs/vb/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/vb/modifier.txt -------------------------------------------------------------------------------- /langs/vb/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/vb/reserved.txt -------------------------------------------------------------------------------- /langs/vb/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/vb/statement.txt -------------------------------------------------------------------------------- /langs/vb/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/vb/type.txt -------------------------------------------------------------------------------- /langs/vb/vb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/vb/vb.txt -------------------------------------------------------------------------------- /langs/verilog/modifier.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/verilog/modifier.txt -------------------------------------------------------------------------------- /langs/verilog/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/verilog/reserved.txt -------------------------------------------------------------------------------- /langs/verilog/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/verilog/statement.txt -------------------------------------------------------------------------------- /langs/verilog/type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/verilog/type.txt -------------------------------------------------------------------------------- /langs/verilog/verilog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/verilog/verilog.txt -------------------------------------------------------------------------------- /langs/vim/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/vim/statement.txt -------------------------------------------------------------------------------- /langs/vim/vim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/vim/vim.txt -------------------------------------------------------------------------------- /langs/xhtml/xhtml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/xhtml/xhtml.txt -------------------------------------------------------------------------------- /langs/yaml/operator.txt: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | [ 4 | ] 5 | , 6 | --- 7 | : 8 | < 9 | > 10 | | 11 | . 12 | & -------------------------------------------------------------------------------- /langs/yaml/yaml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/yaml/yaml.txt -------------------------------------------------------------------------------- /langs/zsh/modifier.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /langs/zsh/reserved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/zsh/reserved.txt -------------------------------------------------------------------------------- /langs/zsh/statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/zsh/statement.txt -------------------------------------------------------------------------------- /langs/zsh/type.txt: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | -------------------------------------------------------------------------------- /langs/zsh/zsh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/langs/zsh/zsh.txt -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/readme.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/readme.txt -------------------------------------------------------------------------------- /screenshots/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/screenshots/screenshot-1.png -------------------------------------------------------------------------------- /screenshots/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/screenshots/screenshot-2.png -------------------------------------------------------------------------------- /screenshots/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/screenshots/screenshot-3.png -------------------------------------------------------------------------------- /screenshots/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/screenshots/screenshot-4.png -------------------------------------------------------------------------------- /screenshots/screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/screenshots/screenshot-5.png -------------------------------------------------------------------------------- /themes/1c-kod/1c-kod.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/1c-kod/1c-kod.css -------------------------------------------------------------------------------- /themes/1c-zapros/1c-zapros.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/1c-zapros/1c-zapros.css -------------------------------------------------------------------------------- /themes/809finest/809finest.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/809finest/809finest.css -------------------------------------------------------------------------------- /themes/ado/ado.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/ado/ado.css -------------------------------------------------------------------------------- /themes/amity/amity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/amity/amity.css -------------------------------------------------------------------------------- /themes/arduino-ide/arduino-ide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/arduino-ide/arduino-ide.css -------------------------------------------------------------------------------- /themes/bncplusplus/bncplusplus.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/bncplusplus/bncplusplus.css -------------------------------------------------------------------------------- /themes/capacitacionti/capacitacionti.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/capacitacionti/capacitacionti.css -------------------------------------------------------------------------------- /themes/cg-cookie/cg-cookie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/cg-cookie/cg-cookie.css -------------------------------------------------------------------------------- /themes/cisco-router/cisco-router.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/cisco-router/cisco-router.css -------------------------------------------------------------------------------- /themes/classic/classic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/classic/classic.css -------------------------------------------------------------------------------- /themes/coda-special-board/coda-special-board.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/coda-special-board/coda-special-board.css -------------------------------------------------------------------------------- /themes/coy/coy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/coy/coy.css -------------------------------------------------------------------------------- /themes/dark-terminal/dark-terminal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/dark-terminal/dark-terminal.css -------------------------------------------------------------------------------- /themes/eclipse/eclipse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/eclipse/eclipse.css -------------------------------------------------------------------------------- /themes/epicgeeks/epicgeeks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/epicgeeks/epicgeeks.css -------------------------------------------------------------------------------- /themes/epicgeeks/images/code.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/epicgeeks/images/code.gif -------------------------------------------------------------------------------- /themes/epicgeeks/images/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/epicgeeks/images/copy.gif -------------------------------------------------------------------------------- /themes/epicgeeks/images/list.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/epicgeeks/images/list.gif -------------------------------------------------------------------------------- /themes/epicgeeks/images/pop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/epicgeeks/images/pop.gif -------------------------------------------------------------------------------- /themes/familiar/familiar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/familiar/familiar.css -------------------------------------------------------------------------------- /themes/feeldesign/feeldesign.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/feeldesign/feeldesign.css -------------------------------------------------------------------------------- /themes/flatui-light/flatui-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/flatui-light/flatui-light.css -------------------------------------------------------------------------------- /themes/github/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/github/github.css -------------------------------------------------------------------------------- /themes/idle/idle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/idle/idle.css -------------------------------------------------------------------------------- /themes/inlellij-idea/inlellij-idea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/inlellij-idea/inlellij-idea.css -------------------------------------------------------------------------------- /themes/iris-vfx/iris-vfx.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/iris-vfx/iris-vfx.css -------------------------------------------------------------------------------- /themes/kaderu/kaderu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/kaderu/kaderu.css -------------------------------------------------------------------------------- /themes/kayote/kayote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/kayote/kayote.css -------------------------------------------------------------------------------- /themes/light-abite/light-abite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/light-abite/light-abite.css -------------------------------------------------------------------------------- /themes/mirc-dark/mirc-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/mirc-dark/mirc-dark.css -------------------------------------------------------------------------------- /themes/mm-dark-blue/mm-dark-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/mm-dark-blue/mm-dark-blue.css -------------------------------------------------------------------------------- /themes/monokai/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/monokai/monokai.css -------------------------------------------------------------------------------- /themes/neon/neon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/neon/neon.css -------------------------------------------------------------------------------- /themes/obsidian-light/obsidian-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/obsidian-light/obsidian-light.css -------------------------------------------------------------------------------- /themes/obsidian/obsidian.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/obsidian/obsidian.css -------------------------------------------------------------------------------- /themes/onderka15/onderka15.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/onderka15/onderka15.css -------------------------------------------------------------------------------- /themes/orange-code/orange-code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/orange-code/orange-code.css -------------------------------------------------------------------------------- /themes/plain-white/plain-white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/plain-white/plain-white.css -------------------------------------------------------------------------------- /themes/powershell-ise/powershell-ise.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/powershell-ise/powershell-ise.css -------------------------------------------------------------------------------- /themes/powershell/powershell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/powershell/powershell.css -------------------------------------------------------------------------------- /themes/prism-like/prism-like.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/prism-like/prism-like.css -------------------------------------------------------------------------------- /themes/pspad/pspad.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/pspad/pspad.css -------------------------------------------------------------------------------- /themes/qtcreator/qtcreator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/qtcreator/qtcreator.css -------------------------------------------------------------------------------- /themes/raygun/raygun.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/raygun/raygun.css -------------------------------------------------------------------------------- /themes/secrets-of-rock/secrets-of-rock.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/secrets-of-rock/secrets-of-rock.css -------------------------------------------------------------------------------- /themes/shell-default/shell-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/shell-default/shell-default.css -------------------------------------------------------------------------------- /themes/solarized-dark/solarized-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/solarized-dark/solarized-dark.css -------------------------------------------------------------------------------- /themes/solarized-light/solarized-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/solarized-light/solarized-light.css -------------------------------------------------------------------------------- /themes/son-of-obsidian/son-of-obsidian.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/son-of-obsidian/son-of-obsidian.css -------------------------------------------------------------------------------- /themes/ssms2012/ssms2012.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/ssms2012/ssms2012.css -------------------------------------------------------------------------------- /themes/sublime-text/sublime-text.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/sublime-text/sublime-text.css -------------------------------------------------------------------------------- /themes/terminal/terminal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/terminal/terminal.css -------------------------------------------------------------------------------- /themes/tomorrow-night/tomorrow-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/tomorrow-night/tomorrow-night.css -------------------------------------------------------------------------------- /themes/tomorrow/tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/tomorrow/tomorrow.css -------------------------------------------------------------------------------- /themes/turnwall/turnwall.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/turnwall/turnwall.css -------------------------------------------------------------------------------- /themes/twilight/twilight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/twilight/twilight.css -------------------------------------------------------------------------------- /themes/visual-assist/visual-assist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/visual-assist/visual-assist.css -------------------------------------------------------------------------------- /themes/vs2012-black/vs2012-black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/vs2012-black/vs2012-black.css -------------------------------------------------------------------------------- /themes/vs2012/vs2012.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/vs2012/vs2012.css -------------------------------------------------------------------------------- /themes/x3info/x3info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/x3info/x3info.css -------------------------------------------------------------------------------- /themes/xcode/xcode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/themes/xcode/xcode.css -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-ar_AR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-ar_AR.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-ar_AR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-ar_AR.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-de_DE.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-de_DE.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-de_DE.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-es_ES.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-es_ES.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-es_ES.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-fa_IR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-fa_IR.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-fa_IR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-fa_IR.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-fi.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-fi.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-fi.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-fr_FR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-fr_FR.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-fr_FR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-fr_FR.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-it_IT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-it_IT.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-it_IT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-it_IT.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-ja.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-ja.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-ja.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-ko_KR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-ko_KR.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-ko_KR.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-lt_LT.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-lt_LT.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-lt_LT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-lt_LT.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-nb_NO.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-nb_NO.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-nb_NO.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-nb_NO.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-nl_NL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-nl_NL.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-nl_NL.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-pl_PL.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-pl_PL.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-pl_PL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-pl_PL.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-pt_BR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-pt_BR.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-pt_BR.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-ru_RU.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-ru_RU.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-ru_RU.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-sk_SK.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-sk_SK.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-sk_SK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-sk_SK.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-sl_SI.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-sl_SI.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-sl_SI.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-sl_SI.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-ta_MY.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-ta_MY.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-ta_MY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-ta_MY.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-tr_TR.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-tr_TR.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-tr_TR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-tr_TR.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-uk_UA.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-uk_UA.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-uk_UA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-uk_UA.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-zh_CN.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-zh_CN.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-zh_CN.po -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-zh_TW.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-zh_TW.mo -------------------------------------------------------------------------------- /trans/crayon-syntax-highlighter-zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/trans/crayon-syntax-highlighter-zh_TW.po -------------------------------------------------------------------------------- /util/crayon_log.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/crayon_log.class.php -------------------------------------------------------------------------------- /util/crayon_timer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/crayon_timer.class.php -------------------------------------------------------------------------------- /util/crayon_util.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/crayon_util.class.php -------------------------------------------------------------------------------- /util/external_use.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/external_use.php -------------------------------------------------------------------------------- /util/lines_to_array.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/lines_to_array.rb -------------------------------------------------------------------------------- /util/lines_to_regex.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/lines_to_regex.rb -------------------------------------------------------------------------------- /util/minify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/minify.sh -------------------------------------------------------------------------------- /util/sample/abap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/abap.txt -------------------------------------------------------------------------------- /util/sample/apache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/apache.txt -------------------------------------------------------------------------------- /util/sample/applescript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/applescript.txt -------------------------------------------------------------------------------- /util/sample/arduino.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/arduino.txt -------------------------------------------------------------------------------- /util/sample/as.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/as.txt -------------------------------------------------------------------------------- /util/sample/asm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/asm.txt -------------------------------------------------------------------------------- /util/sample/asp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/asp.txt -------------------------------------------------------------------------------- /util/sample/autoit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/autoit.txt -------------------------------------------------------------------------------- /util/sample/batch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/batch.txt -------------------------------------------------------------------------------- /util/sample/c#.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/c#.txt -------------------------------------------------------------------------------- /util/sample/c++.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/c++.txt -------------------------------------------------------------------------------- /util/sample/c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/c.txt -------------------------------------------------------------------------------- /util/sample/clojure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/clojure.txt -------------------------------------------------------------------------------- /util/sample/coffee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/coffee.txt -------------------------------------------------------------------------------- /util/sample/css.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/css.txt -------------------------------------------------------------------------------- /util/sample/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/default.txt -------------------------------------------------------------------------------- /util/sample/delphi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/delphi.txt -------------------------------------------------------------------------------- /util/sample/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/diff.txt -------------------------------------------------------------------------------- /util/sample/dws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/dws.txt -------------------------------------------------------------------------------- /util/sample/erlang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/erlang.txt -------------------------------------------------------------------------------- /util/sample/go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/go.txt -------------------------------------------------------------------------------- /util/sample/haskell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/haskell.txt -------------------------------------------------------------------------------- /util/sample/ilogic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/ilogic.txt -------------------------------------------------------------------------------- /util/sample/ini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/ini.txt -------------------------------------------------------------------------------- /util/sample/java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/java.txt -------------------------------------------------------------------------------- /util/sample/js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/js.txt -------------------------------------------------------------------------------- /util/sample/kl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/kl.txt -------------------------------------------------------------------------------- /util/sample/less.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/less.txt -------------------------------------------------------------------------------- /util/sample/lisp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/lisp.txt -------------------------------------------------------------------------------- /util/sample/lua.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/lua.txt -------------------------------------------------------------------------------- /util/sample/matlab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/matlab.txt -------------------------------------------------------------------------------- /util/sample/mel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/mel.txt -------------------------------------------------------------------------------- /util/sample/monkey.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/monkey.txt -------------------------------------------------------------------------------- /util/sample/mysql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/mysql.txt -------------------------------------------------------------------------------- /util/sample/objc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/objc.txt -------------------------------------------------------------------------------- /util/sample/perl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/perl.txt -------------------------------------------------------------------------------- /util/sample/pgsql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/pgsql.txt -------------------------------------------------------------------------------- /util/sample/php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/php.txt -------------------------------------------------------------------------------- /util/sample/plsql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/plsql.txt -------------------------------------------------------------------------------- /util/sample/ps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/ps.txt -------------------------------------------------------------------------------- /util/sample/python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/python.txt -------------------------------------------------------------------------------- /util/sample/r.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/r.txt -------------------------------------------------------------------------------- /util/sample/reg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/reg.txt -------------------------------------------------------------------------------- /util/sample/ruby.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/ruby.txt -------------------------------------------------------------------------------- /util/sample/rust.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/rust.txt -------------------------------------------------------------------------------- /util/sample/sass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/sass.txt -------------------------------------------------------------------------------- /util/sample/scala.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/scala.txt -------------------------------------------------------------------------------- /util/sample/scheme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/scheme.txt -------------------------------------------------------------------------------- /util/sample/sh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/sh.txt -------------------------------------------------------------------------------- /util/sample/swift.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/swift.txt -------------------------------------------------------------------------------- /util/sample/tex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/tex.txt -------------------------------------------------------------------------------- /util/sample/tsql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/tsql.txt -------------------------------------------------------------------------------- /util/sample/vb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/vb.txt -------------------------------------------------------------------------------- /util/sample/vbnet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/vbnet.txt -------------------------------------------------------------------------------- /util/sample/vim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/vim.txt -------------------------------------------------------------------------------- /util/sample/xhtml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/xhtml.txt -------------------------------------------------------------------------------- /util/sample/yaml.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/yaml.txt -------------------------------------------------------------------------------- /util/sample/zsh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/sample/zsh.txt -------------------------------------------------------------------------------- /util/scraper/file_concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/scraper/file_concat.py -------------------------------------------------------------------------------- /util/scraper/keyword_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/scraper/keyword_join.py -------------------------------------------------------------------------------- /util/scraper/keyword_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/scraper/keyword_scraper.py -------------------------------------------------------------------------------- /util/scraper/keyword_scraper_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/scraper/keyword_scraper_tool.py -------------------------------------------------------------------------------- /util/scraper/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/scraper/readme.txt -------------------------------------------------------------------------------- /util/settings_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/settings_list.txt -------------------------------------------------------------------------------- /util/tag-editor/colorbox/colorbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/tag-editor/colorbox/colorbox.css -------------------------------------------------------------------------------- /util/tag-editor/colorbox/jquery.colorbox-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/tag-editor/colorbox/jquery.colorbox-min.js -------------------------------------------------------------------------------- /util/tag-editor/crayon_qt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/tag-editor/crayon_qt.js -------------------------------------------------------------------------------- /util/tag-editor/crayon_tag_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/tag-editor/crayon_tag_editor.js -------------------------------------------------------------------------------- /util/tag-editor/crayon_tag_editor_wp.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/tag-editor/crayon_tag_editor_wp.class.php -------------------------------------------------------------------------------- /util/tag-editor/crayon_te.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/tag-editor/crayon_te.css -------------------------------------------------------------------------------- /util/tag-editor/crayon_tinymce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/tag-editor/crayon_tinymce.js -------------------------------------------------------------------------------- /util/theme-editor/images/button-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/theme-editor/images/button-pressed.png -------------------------------------------------------------------------------- /util/theme-editor/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/theme-editor/images/button.png -------------------------------------------------------------------------------- /util/theme-editor/images/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/theme-editor/images/frame.png -------------------------------------------------------------------------------- /util/theme-editor/images/highlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/theme-editor/images/highlighting.png -------------------------------------------------------------------------------- /util/theme-editor/images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/theme-editor/images/information.png -------------------------------------------------------------------------------- /util/theme-editor/images/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/theme-editor/images/lines.png -------------------------------------------------------------------------------- /util/theme-editor/images/numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/theme-editor/images/numbers.png -------------------------------------------------------------------------------- /util/theme-editor/images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/theme-editor/images/title.png -------------------------------------------------------------------------------- /util/theme-editor/images/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/theme-editor/images/toolbar.png -------------------------------------------------------------------------------- /util/theme-editor/theme_editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/theme-editor/theme_editor.css -------------------------------------------------------------------------------- /util/theme-editor/theme_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/theme-editor/theme_editor.js -------------------------------------------------------------------------------- /util/theme-editor/theme_editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/theme-editor/theme_editor.php -------------------------------------------------------------------------------- /util/touch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aramk/crayon-syntax-highlighter/HEAD/util/touch.txt --------------------------------------------------------------------------------