├── .gitignore ├── README.md ├── getstart.png └── public ├── bower_components ├── angular-legacy │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ └── package.json ├── angular-old │ ├── .bower.json │ ├── angular.js │ ├── angular.min.js │ └── bower.json ├── angular-route │ ├── .bower.json │ ├── README.md │ ├── angular-route.js │ ├── angular-route.min.js │ ├── angular-route.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json ├── angular │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ ├── index.js │ └── package.json ├── angularfire │ ├── .bower.json │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── angularfire.js │ │ └── angularfire.min.js │ └── index.js ├── bootstrap │ ├── .bower.json │ ├── CHANGELOG.md │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── grunt │ │ ├── .jshintrc │ │ ├── bs-commonjs-generator.js │ │ ├── bs-glyphicons-data-generator.js │ │ ├── bs-lessdoc-parser.js │ │ ├── bs-raw-files-generator.js │ │ ├── configBridge.json │ │ └── sauce_browsers.yml │ ├── js │ │ ├── .jscsrc │ │ ├── .jshintrc │ │ ├── affix.js │ │ ├── alert.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── tooltip.js │ │ └── transition.js │ ├── less │ │ ├── .csscomb.json │ │ ├── .csslintrc │ │ ├── alerts.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── grid.less │ │ ├── input-groups.less │ │ ├── jumbotron.less │ │ ├── labels.less │ │ ├── list-group.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── mixins │ │ │ ├── alerts.less │ │ │ ├── background-variant.less │ │ │ ├── border-radius.less │ │ │ ├── buttons.less │ │ │ ├── center-block.less │ │ │ ├── clearfix.less │ │ │ ├── forms.less │ │ │ ├── gradients.less │ │ │ ├── grid-framework.less │ │ │ ├── grid.less │ │ │ ├── hide-text.less │ │ │ ├── image.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── nav-divider.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── opacity.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── progress-bar.less │ │ │ ├── reset-filter.less │ │ │ ├── reset-text.less │ │ │ ├── resize.less │ │ │ ├── responsive-visibility.less │ │ │ ├── size.less │ │ │ ├── tab-focus.less │ │ │ ├── table-row.less │ │ │ ├── text-emphasis.less │ │ │ ├── text-overflow.less │ │ │ └── vendor-prefixes.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── normalize.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── panels.less │ │ ├── popovers.less │ │ ├── print.less │ │ ├── progress-bars.less │ │ ├── responsive-embed.less │ │ ├── responsive-utilities.less │ │ ├── scaffolding.less │ │ ├── tables.less │ │ ├── theme.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── nuget │ │ ├── MyGet.ps1 │ │ ├── bootstrap.less.nuspec │ │ └── bootstrap.nuspec │ ├── package.js │ └── package.json ├── es6-promise-4.2.6 │ ├── .eslintrc │ ├── .gitignore │ ├── .jshintrc │ ├── .release.json │ ├── .spmignore │ ├── .travis.yml │ ├── Brocfile.js │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── auto.js │ ├── config │ │ └── versionTemplate.txt │ ├── es6-promise.d.ts │ ├── lib │ │ ├── es6-promise.auto.js │ │ ├── es6-promise.js │ │ └── es6-promise │ │ │ ├── -internal.js │ │ │ ├── asap.js │ │ │ ├── enumerator.js │ │ │ ├── polyfill.js │ │ │ ├── promise.js │ │ │ ├── promise │ │ │ ├── all.js │ │ │ ├── race.js │ │ │ ├── reject.js │ │ │ └── resolve.js │ │ │ ├── then.js │ │ │ └── utils.js │ ├── package.json │ ├── server │ │ ├── .jshintrc │ │ └── index.js │ ├── test │ │ ├── extension-test.js │ │ ├── index.html │ │ ├── index.js │ │ ├── scheduler-test.js │ │ ├── test-adapter.js │ │ └── worker.js │ ├── testem.js │ ├── vendor │ │ └── loader.js │ └── yarn.lock ├── firebase │ ├── .bower.json │ ├── README.md │ ├── bower.json │ ├── firebase-debug.js │ └── firebase.js ├── google-code-prettify │ ├── .bower.json │ ├── CHANGES.html │ ├── COPYING │ ├── README-zh-Hans.html │ ├── README.html │ ├── README.md │ ├── bin │ │ ├── prettify.min.css │ │ ├── prettify.min.js │ │ └── run_prettify.min.js │ ├── bower.json │ ├── examples │ │ └── quine.html │ ├── src │ │ ├── lang-apollo.js │ │ ├── lang-basic.js │ │ ├── lang-clj.js │ │ ├── lang-css.js │ │ ├── lang-dart.js │ │ ├── lang-erlang.js │ │ ├── lang-go.js │ │ ├── lang-hs.js │ │ ├── lang-lisp.js │ │ ├── lang-llvm.js │ │ ├── lang-lua.js │ │ ├── lang-matlab.js │ │ ├── lang-ml.js │ │ ├── lang-mumps.js │ │ ├── lang-n.js │ │ ├── lang-pascal.js │ │ ├── lang-proto.js │ │ ├── lang-r.js │ │ ├── lang-rd.js │ │ ├── lang-scala.js │ │ ├── lang-sql.js │ │ ├── lang-tcl.js │ │ ├── lang-tex.js │ │ ├── lang-vb.js │ │ ├── lang-vhdl.js │ │ ├── lang-wiki.js │ │ ├── lang-xq.js │ │ ├── lang-yaml.js │ │ ├── prettify.css │ │ ├── prettify.js │ │ └── run_prettify.js │ └── styles │ │ ├── demo.html │ │ ├── desert.css │ │ ├── doxy.css │ │ ├── index.html │ │ ├── sons-of-obsidian.css │ │ └── sunburst.css ├── headjs │ ├── .bower.json │ ├── bower.json │ └── dist │ │ └── 1.0.0 │ │ ├── changelog.txt │ │ ├── head.core.js │ │ ├── head.core.min.js │ │ ├── head.core.min.js.map │ │ ├── head.css3.js │ │ ├── head.css3.min.js │ │ ├── head.css3.min.js.map │ │ ├── head.js │ │ ├── head.load.js │ │ ├── head.load.min.js │ │ ├── head.load.min.js.map │ │ ├── head.min.js │ │ └── head.min.js.map ├── html2canvas-0.4.1 │ ├── .gitignore │ ├── .travis.yml │ ├── Gruntfile.js │ ├── LICENSE │ ├── bower.json │ ├── build │ │ ├── html2canvas.js │ │ └── html2canvas.min.js │ ├── examples │ │ ├── demo.html │ │ └── demo2.html │ ├── package.json │ ├── readme.md │ ├── src │ │ ├── Core.js │ │ ├── Font.js │ │ ├── Generate.js │ │ ├── Parse.js │ │ ├── Preload.js │ │ ├── Queue.js │ │ ├── Renderer.js │ │ ├── Support.js │ │ ├── Util.js │ │ └── renderers │ │ │ ├── Canvas.js │ │ │ └── SVG.js │ └── tests │ │ ├── assets │ │ ├── image.svg │ │ ├── image2.jpg │ │ ├── image2_1.jpg │ │ ├── image_1.jpg │ │ ├── jquery-1.6.2.js │ │ └── jquery.plugin.html2canvas.js │ │ ├── cases │ │ ├── background │ │ │ ├── clip.html │ │ │ ├── encoded.html │ │ │ ├── linear-gradient.html │ │ │ ├── multi.html │ │ │ ├── position.html │ │ │ ├── radial-gradient.html │ │ │ └── repeat.html │ │ ├── border │ │ │ ├── dashed.html │ │ │ ├── dotted.html │ │ │ ├── double.html │ │ │ ├── radius.html │ │ │ └── solid.html │ │ ├── child-textnodes.html │ │ ├── forms.html │ │ ├── iframe.html │ │ ├── images │ │ │ ├── canvas.html │ │ │ ├── cross-origin.html │ │ │ ├── empty.html │ │ │ ├── images.html │ │ │ └── svg.html │ │ ├── list │ │ │ ├── decimal-leading-zero.html │ │ │ ├── decimal.html │ │ │ ├── lower-alpha.html │ │ │ └── upper-roman.html │ │ ├── overflow.html │ │ ├── pseudoelements.html │ │ ├── text │ │ │ ├── chinese.html │ │ │ ├── linethrough.html │ │ │ ├── shadow.html │ │ │ ├── text.html │ │ │ ├── underline-lineheight.html │ │ │ └── underline.html │ │ ├── transform │ │ │ └── nested.html │ │ ├── visibility.html │ │ └── zindex │ │ │ ├── z-index1.html │ │ │ ├── z-index10.html │ │ │ ├── z-index11.html │ │ │ ├── z-index12.html │ │ │ ├── z-index13.html │ │ │ ├── z-index14.html │ │ │ ├── z-index15.html │ │ │ ├── z-index2.html │ │ │ ├── z-index3.html │ │ │ ├── z-index4.html │ │ │ ├── z-index5.html │ │ │ ├── z-index6.html │ │ │ ├── z-index7.html │ │ │ ├── z-index8.html │ │ │ └── z-index9.html │ │ ├── certificate.pem.enc │ │ ├── qunit │ │ ├── index.html │ │ ├── lib │ │ │ ├── qunit.css │ │ │ └── qunit.js │ │ └── unit │ │ │ ├── css.js │ │ │ ├── generate.js │ │ │ └── utils.js │ │ ├── rangetest.html │ │ ├── readme.md │ │ ├── results │ │ └── .gitignore │ │ ├── selenium.js │ │ └── test.js ├── html2canvas-1.0.0-a12 │ ├── html2canvas.js │ └── html2canvas.min.js ├── jquery-legacy │ ├── .bower.json │ ├── MIT-LICENSE.txt │ ├── bower.json │ ├── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ └── src │ │ ├── ajax.js │ │ ├── ajax │ │ ├── jsonp.js │ │ ├── load.js │ │ ├── parseJSON.js │ │ ├── parseXML.js │ │ ├── script.js │ │ ├── var │ │ │ ├── nonce.js │ │ │ └── rquery.js │ │ └── xhr.js │ │ ├── attributes.js │ │ ├── attributes │ │ ├── attr.js │ │ ├── classes.js │ │ ├── prop.js │ │ ├── support.js │ │ └── val.js │ │ ├── callbacks.js │ │ ├── core.js │ │ ├── core │ │ ├── access.js │ │ ├── init.js │ │ ├── parseHTML.js │ │ ├── ready.js │ │ └── var │ │ │ └── rsingleTag.js │ │ ├── css.js │ │ ├── css │ │ ├── addGetHookIf.js │ │ ├── curCSS.js │ │ ├── defaultDisplay.js │ │ ├── hiddenVisibleSelectors.js │ │ ├── support.js │ │ ├── swap.js │ │ └── var │ │ │ ├── cssExpand.js │ │ │ ├── isHidden.js │ │ │ ├── rmargin.js │ │ │ └── rnumnonpx.js │ │ ├── data.js │ │ ├── data │ │ ├── accepts.js │ │ └── support.js │ │ ├── deferred.js │ │ ├── deprecated.js │ │ ├── dimensions.js │ │ ├── effects.js │ │ ├── effects │ │ ├── Tween.js │ │ ├── animatedSelector.js │ │ └── support.js │ │ ├── event.js │ │ ├── event │ │ ├── ajax.js │ │ ├── alias.js │ │ └── support.js │ │ ├── exports │ │ ├── amd.js │ │ └── global.js │ │ ├── intro.js │ │ ├── jquery.js │ │ ├── manipulation.js │ │ ├── manipulation │ │ ├── _evalUrl.js │ │ ├── support.js │ │ └── var │ │ │ └── rcheckableType.js │ │ ├── offset.js │ │ ├── outro.js │ │ ├── queue.js │ │ ├── queue │ │ └── delay.js │ │ ├── selector-sizzle.js │ │ ├── selector.js │ │ ├── serialize.js │ │ ├── sizzle │ │ └── dist │ │ │ ├── sizzle.js │ │ │ ├── sizzle.min.js │ │ │ └── sizzle.min.map │ │ ├── support.js │ │ ├── traversing.js │ │ ├── traversing │ │ ├── findFilter.js │ │ └── var │ │ │ └── rneedsContext.js │ │ ├── var │ │ ├── class2type.js │ │ ├── concat.js │ │ ├── deletedIds.js │ │ ├── hasOwn.js │ │ ├── indexOf.js │ │ ├── pnum.js │ │ ├── push.js │ │ ├── rnotwhite.js │ │ ├── slice.js │ │ ├── strundefined.js │ │ ├── support.js │ │ └── toString.js │ │ └── wrap.js ├── jquery │ ├── .bower.json │ ├── MIT-LICENSE.txt │ ├── bower.json │ ├── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map │ └── src │ │ ├── ajax.js │ │ ├── ajax │ │ ├── jsonp.js │ │ ├── load.js │ │ ├── parseJSON.js │ │ ├── parseXML.js │ │ ├── script.js │ │ ├── var │ │ │ ├── nonce.js │ │ │ └── rquery.js │ │ └── xhr.js │ │ ├── attributes.js │ │ ├── attributes │ │ ├── attr.js │ │ ├── classes.js │ │ ├── prop.js │ │ ├── support.js │ │ └── val.js │ │ ├── callbacks.js │ │ ├── core.js │ │ ├── core │ │ ├── access.js │ │ ├── init.js │ │ ├── parseHTML.js │ │ ├── ready.js │ │ └── var │ │ │ └── rsingleTag.js │ │ ├── css.js │ │ ├── css │ │ ├── addGetHookIf.js │ │ ├── curCSS.js │ │ ├── defaultDisplay.js │ │ ├── hiddenVisibleSelectors.js │ │ ├── support.js │ │ ├── swap.js │ │ └── var │ │ │ ├── cssExpand.js │ │ │ ├── getStyles.js │ │ │ ├── isHidden.js │ │ │ ├── rmargin.js │ │ │ └── rnumnonpx.js │ │ ├── data.js │ │ ├── data │ │ ├── Data.js │ │ ├── accepts.js │ │ └── var │ │ │ ├── data_priv.js │ │ │ └── data_user.js │ │ ├── deferred.js │ │ ├── deprecated.js │ │ ├── dimensions.js │ │ ├── effects.js │ │ ├── effects │ │ ├── Tween.js │ │ └── animatedSelector.js │ │ ├── event.js │ │ ├── event │ │ ├── ajax.js │ │ ├── alias.js │ │ └── support.js │ │ ├── exports │ │ ├── amd.js │ │ └── global.js │ │ ├── intro.js │ │ ├── jquery.js │ │ ├── manipulation.js │ │ ├── manipulation │ │ ├── _evalUrl.js │ │ ├── support.js │ │ └── var │ │ │ └── rcheckableType.js │ │ ├── offset.js │ │ ├── outro.js │ │ ├── queue.js │ │ ├── queue │ │ └── delay.js │ │ ├── selector-native.js │ │ ├── selector-sizzle.js │ │ ├── selector.js │ │ ├── serialize.js │ │ ├── sizzle │ │ └── dist │ │ │ ├── sizzle.js │ │ │ ├── sizzle.min.js │ │ │ └── sizzle.min.map │ │ ├── traversing.js │ │ ├── traversing │ │ ├── findFilter.js │ │ └── var │ │ │ └── rneedsContext.js │ │ ├── var │ │ ├── arr.js │ │ ├── class2type.js │ │ ├── concat.js │ │ ├── hasOwn.js │ │ ├── indexOf.js │ │ ├── pnum.js │ │ ├── push.js │ │ ├── rnotwhite.js │ │ ├── slice.js │ │ ├── strundefined.js │ │ ├── support.js │ │ └── toString.js │ │ └── wrap.js ├── ngstorage │ ├── .bower.json │ ├── .editorconfig │ ├── .gitattributes │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── ngStorage.js │ ├── ngStorage.min.js │ └── package.js ├── prism │ ├── .bower.json │ ├── archive.tar.gz.3431523316 │ └── prism-1.3.0 │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CNAME │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── code.js │ │ ├── components.js │ │ ├── components │ │ ├── prism-abap.js │ │ ├── prism-abap.min.js │ │ ├── prism-actionscript.js │ │ ├── prism-actionscript.min.js │ │ ├── prism-apacheconf.js │ │ ├── prism-apacheconf.min.js │ │ ├── prism-apl.js │ │ ├── prism-apl.min.js │ │ ├── prism-applescript.js │ │ ├── prism-applescript.min.js │ │ ├── prism-asciidoc.js │ │ ├── prism-asciidoc.min.js │ │ ├── prism-aspnet.js │ │ ├── prism-aspnet.min.js │ │ ├── prism-autohotkey.js │ │ ├── prism-autohotkey.min.js │ │ ├── prism-autoit.js │ │ ├── prism-autoit.min.js │ │ ├── prism-bash.js │ │ ├── prism-bash.min.js │ │ ├── prism-basic.js │ │ ├── prism-basic.min.js │ │ ├── prism-batch.js │ │ ├── prism-batch.min.js │ │ ├── prism-bison.js │ │ ├── prism-bison.min.js │ │ ├── prism-brainfuck.js │ │ ├── prism-brainfuck.min.js │ │ ├── prism-c.js │ │ ├── prism-c.min.js │ │ ├── prism-clike.js │ │ ├── prism-clike.min.js │ │ ├── prism-coffeescript.js │ │ ├── prism-coffeescript.min.js │ │ ├── prism-core.js │ │ ├── prism-core.min.js │ │ ├── prism-cpp.js │ │ ├── prism-cpp.min.js │ │ ├── prism-crystal.js │ │ ├── prism-crystal.min.js │ │ ├── prism-csharp.js │ │ ├── prism-csharp.min.js │ │ ├── prism-css-extras.js │ │ ├── prism-css-extras.min.js │ │ ├── prism-css.js │ │ ├── prism-css.min.js │ │ ├── prism-d.js │ │ ├── prism-d.min.js │ │ ├── prism-dart.js │ │ ├── prism-dart.min.js │ │ ├── prism-diff.js │ │ ├── prism-diff.min.js │ │ ├── prism-docker.js │ │ ├── prism-docker.min.js │ │ ├── prism-eiffel.js │ │ ├── prism-eiffel.min.js │ │ ├── prism-elixir.js │ │ ├── prism-elixir.min.js │ │ ├── prism-erlang.js │ │ ├── prism-erlang.min.js │ │ ├── prism-fortran.js │ │ ├── prism-fortran.min.js │ │ ├── prism-fsharp.js │ │ ├── prism-fsharp.min.js │ │ ├── prism-gherkin.js │ │ ├── prism-gherkin.min.js │ │ ├── prism-git.js │ │ ├── prism-git.min.js │ │ ├── prism-glsl.js │ │ ├── prism-glsl.min.js │ │ ├── prism-go.js │ │ ├── prism-go.min.js │ │ ├── prism-groovy.js │ │ ├── prism-groovy.min.js │ │ ├── prism-haml.js │ │ ├── prism-haml.min.js │ │ ├── prism-handlebars.js │ │ ├── prism-handlebars.min.js │ │ ├── prism-haskell.js │ │ ├── prism-haskell.min.js │ │ ├── prism-haxe.js │ │ ├── prism-haxe.min.js │ │ ├── prism-http.js │ │ ├── prism-http.min.js │ │ ├── prism-icon.js │ │ ├── prism-icon.min.js │ │ ├── prism-inform7.js │ │ ├── prism-inform7.min.js │ │ ├── prism-ini.js │ │ ├── prism-ini.min.js │ │ ├── prism-j.js │ │ ├── prism-j.min.js │ │ ├── prism-jade.js │ │ ├── prism-jade.min.js │ │ ├── prism-java.js │ │ ├── prism-java.min.js │ │ ├── prism-javascript.js │ │ ├── prism-javascript.min.js │ │ ├── prism-jsx.js │ │ ├── prism-jsx.min.js │ │ ├── prism-julia.js │ │ ├── prism-julia.min.js │ │ ├── prism-keyman.js │ │ ├── prism-keyman.min.js │ │ ├── prism-kotlin.js │ │ ├── prism-kotlin.min.js │ │ ├── prism-latex.js │ │ ├── prism-latex.min.js │ │ ├── prism-less.js │ │ ├── prism-less.min.js │ │ ├── prism-lolcode.js │ │ ├── prism-lolcode.min.js │ │ ├── prism-lua.js │ │ ├── prism-lua.min.js │ │ ├── prism-makefile.js │ │ ├── prism-makefile.min.js │ │ ├── prism-markdown.js │ │ ├── prism-markdown.min.js │ │ ├── prism-markup.js │ │ ├── prism-markup.min.js │ │ ├── prism-matlab.js │ │ ├── prism-matlab.min.js │ │ ├── prism-mel.js │ │ ├── prism-mel.min.js │ │ ├── prism-mizar.js │ │ ├── prism-mizar.min.js │ │ ├── prism-monkey.js │ │ ├── prism-monkey.min.js │ │ ├── prism-nasm.js │ │ ├── prism-nasm.min.js │ │ ├── prism-nginx.js │ │ ├── prism-nginx.min.js │ │ ├── prism-nim.js │ │ ├── prism-nim.min.js │ │ ├── prism-nix.js │ │ ├── prism-nix.min.js │ │ ├── prism-nsis.js │ │ ├── prism-nsis.min.js │ │ ├── prism-objectivec.js │ │ ├── prism-objectivec.min.js │ │ ├── prism-ocaml.js │ │ ├── prism-ocaml.min.js │ │ ├── prism-oz.js │ │ ├── prism-oz.min.js │ │ ├── prism-parigp.js │ │ ├── prism-parigp.min.js │ │ ├── prism-parser.js │ │ ├── prism-parser.min.js │ │ ├── prism-pascal.js │ │ ├── prism-pascal.min.js │ │ ├── prism-perl.js │ │ ├── prism-perl.min.js │ │ ├── prism-php-extras.js │ │ ├── prism-php-extras.min.js │ │ ├── prism-php.js │ │ ├── prism-php.min.js │ │ ├── prism-powershell.js │ │ ├── prism-powershell.min.js │ │ ├── prism-processing.js │ │ ├── prism-processing.min.js │ │ ├── prism-prolog.js │ │ ├── prism-prolog.min.js │ │ ├── prism-puppet.js │ │ ├── prism-puppet.min.js │ │ ├── prism-pure.js │ │ ├── prism-pure.min.js │ │ ├── prism-python.js │ │ ├── prism-python.min.js │ │ ├── prism-q.js │ │ ├── prism-q.min.js │ │ ├── prism-qore.js │ │ ├── prism-qore.min.js │ │ ├── prism-r.js │ │ ├── prism-r.min.js │ │ ├── prism-rest.js │ │ ├── prism-rest.min.js │ │ ├── prism-rip.js │ │ ├── prism-rip.min.js │ │ ├── prism-roboconf.js │ │ ├── prism-roboconf.min.js │ │ ├── prism-ruby.js │ │ ├── prism-ruby.min.js │ │ ├── prism-rust.js │ │ ├── prism-rust.min.js │ │ ├── prism-sas.js │ │ ├── prism-sas.min.js │ │ ├── prism-sass.js │ │ ├── prism-sass.min.js │ │ ├── prism-scala.js │ │ ├── prism-scala.min.js │ │ ├── prism-scheme.js │ │ ├── prism-scheme.min.js │ │ ├── prism-scss.js │ │ ├── prism-scss.min.js │ │ ├── prism-smalltalk.js │ │ ├── prism-smalltalk.min.js │ │ ├── prism-smarty.js │ │ ├── prism-smarty.min.js │ │ ├── prism-sql.js │ │ ├── prism-sql.min.js │ │ ├── prism-stylus.js │ │ ├── prism-stylus.min.js │ │ ├── prism-swift.js │ │ ├── prism-swift.min.js │ │ ├── prism-tcl.js │ │ ├── prism-tcl.min.js │ │ ├── prism-textile.js │ │ ├── prism-textile.min.js │ │ ├── prism-twig.js │ │ ├── prism-twig.min.js │ │ ├── prism-typescript.js │ │ ├── prism-typescript.min.js │ │ ├── prism-verilog.js │ │ ├── prism-verilog.min.js │ │ ├── prism-vhdl.js │ │ ├── prism-vhdl.min.js │ │ ├── prism-vim.js │ │ ├── prism-vim.min.js │ │ ├── prism-wiki.js │ │ ├── prism-wiki.min.js │ │ ├── prism-yaml.js │ │ └── prism-yaml.min.js │ │ ├── download.html │ │ ├── download.js │ │ ├── examples.html │ │ ├── examples.js │ │ ├── examples │ │ ├── prism-abap.html │ │ ├── prism-actionscript.html │ │ ├── prism-apacheconf.html │ │ ├── prism-apl.html │ │ ├── prism-applescript.html │ │ ├── prism-asciidoc.html │ │ ├── prism-aspnet.html │ │ ├── prism-autohotkey.html │ │ ├── prism-autoit.html │ │ ├── prism-bash.html │ │ ├── prism-basic.html │ │ ├── prism-batch.html │ │ ├── prism-bison.html │ │ ├── prism-brainfuck.html │ │ ├── prism-c.html │ │ ├── prism-clike.html │ │ ├── prism-coffeescript.html │ │ ├── prism-cpp.html │ │ ├── prism-crystal.html │ │ ├── prism-csharp.html │ │ ├── prism-css.html │ │ ├── prism-d.html │ │ ├── prism-dart.html │ │ ├── prism-diff.html │ │ ├── prism-docker.html │ │ ├── prism-eiffel.html │ │ ├── prism-elixir.html │ │ ├── prism-erlang.html │ │ ├── prism-fortran.html │ │ ├── prism-fsharp.html │ │ ├── prism-gherkin.html │ │ ├── prism-git.html │ │ ├── prism-glsl.html │ │ ├── prism-go.html │ │ ├── prism-groovy.html │ │ ├── prism-haml.html │ │ ├── prism-handlebars.html │ │ ├── prism-haskell.html │ │ ├── prism-haxe.html │ │ ├── prism-http.html │ │ ├── prism-icon.html │ │ ├── prism-inform7.html │ │ ├── prism-ini.html │ │ ├── prism-j.html │ │ ├── prism-jade.html │ │ ├── prism-java.html │ │ ├── prism-javascript.html │ │ ├── prism-jsx.html │ │ ├── prism-julia.html │ │ ├── prism-keyman.html │ │ ├── prism-kotlin.html │ │ ├── prism-latex.html │ │ ├── prism-less.html │ │ ├── prism-lolcode.html │ │ ├── prism-lua.html │ │ ├── prism-makefile.html │ │ ├── prism-markdown.html │ │ ├── prism-markup.html │ │ ├── prism-matlab.html │ │ ├── prism-mel.html │ │ ├── prism-mizar.html │ │ ├── prism-monkey.html │ │ ├── prism-nasm.html │ │ ├── prism-nginx.html │ │ ├── prism-nim.html │ │ ├── prism-nix.html │ │ ├── prism-nsis.html │ │ ├── prism-objectivec.html │ │ ├── prism-ocaml.html │ │ ├── prism-oz.html │ │ ├── prism-parigp.html │ │ ├── prism-parser.html │ │ ├── prism-pascal.html │ │ ├── prism-perl.html │ │ ├── prism-php.html │ │ ├── prism-powershell.html │ │ ├── prism-processing.html │ │ ├── prism-prolog.html │ │ ├── prism-puppet.html │ │ ├── prism-pure.html │ │ ├── prism-python.html │ │ ├── prism-q.html │ │ ├── prism-qore.html │ │ ├── prism-r.html │ │ ├── prism-rest.html │ │ ├── prism-rip.html │ │ ├── prism-roboconf.html │ │ ├── prism-ruby.html │ │ ├── prism-rust.html │ │ ├── prism-sas.html │ │ ├── prism-sass.html │ │ ├── prism-scala.html │ │ ├── prism-scheme.html │ │ ├── prism-scss.html │ │ ├── prism-smalltalk.html │ │ ├── prism-smarty.html │ │ ├── prism-sql.html │ │ ├── prism-stylus.html │ │ ├── prism-swift.html │ │ ├── prism-tcl.html │ │ ├── prism-textile.html │ │ ├── prism-twig.html │ │ ├── prism-typescript.html │ │ ├── prism-verilog.html │ │ ├── prism-vhdl.html │ │ ├── prism-vim.html │ │ ├── prism-wiki.html │ │ └── prism-yaml.html │ │ ├── extending.html │ │ ├── faq.html │ │ ├── favicon.png │ │ ├── gulpfile.js │ │ ├── img │ │ ├── logo-ala.png │ │ ├── logo-css-tricks.png │ │ ├── logo-mdn.png │ │ ├── logo-sitepoint.png │ │ ├── logo-smashing.png │ │ ├── screen-us-web-design-standards.png │ │ └── spectrum.png │ │ ├── index.html │ │ ├── logo.svg │ │ ├── package.json │ │ ├── plugins │ │ ├── autolinker │ │ │ ├── index.html │ │ │ ├── prism-autolinker.css │ │ │ ├── prism-autolinker.js │ │ │ └── prism-autolinker.min.js │ │ ├── autoloader │ │ │ ├── index.html │ │ │ ├── prism-autoloader.js │ │ │ └── prism-autoloader.min.js │ │ ├── file-highlight │ │ │ ├── index.html │ │ │ ├── prism-file-highlight.js │ │ │ └── prism-file-highlight.min.js │ │ ├── highlight-keywords │ │ │ ├── index.html │ │ │ ├── prism-highlight-keywords.js │ │ │ └── prism-highlight-keywords.min.js │ │ ├── ie8 │ │ │ ├── index.html │ │ │ ├── prism-ie8.css │ │ │ ├── prism-ie8.js │ │ │ └── prism-ie8.min.js │ │ ├── index.html │ │ ├── jsonp-highlight │ │ │ ├── index.html │ │ │ ├── prism-jsonp-highlight.js │ │ │ └── prism-jsonp-highlight.min.js │ │ ├── keep-markup │ │ │ ├── index.html │ │ │ ├── prism-keep-markup.js │ │ │ └── prism-keep-markup.min.js │ │ ├── line-highlight │ │ │ ├── index.html │ │ │ ├── prism-line-highlight.css │ │ │ ├── prism-line-highlight.js │ │ │ └── prism-line-highlight.min.js │ │ ├── line-numbers │ │ │ ├── index.html │ │ │ ├── prism-line-numbers.css │ │ │ ├── prism-line-numbers.js │ │ │ └── prism-line-numbers.min.js │ │ ├── previewer-angle │ │ │ ├── index.html │ │ │ ├── prism-previewer-angle.css │ │ │ ├── prism-previewer-angle.js │ │ │ └── prism-previewer-angle.min.js │ │ ├── previewer-base │ │ │ ├── index.html │ │ │ ├── prism-previewer-base.css │ │ │ ├── prism-previewer-base.js │ │ │ └── prism-previewer-base.min.js │ │ ├── previewer-color │ │ │ ├── index.html │ │ │ ├── prism-previewer-color.css │ │ │ ├── prism-previewer-color.js │ │ │ └── prism-previewer-color.min.js │ │ ├── previewer-easing │ │ │ ├── index.html │ │ │ ├── prism-previewer-easing.css │ │ │ ├── prism-previewer-easing.js │ │ │ └── prism-previewer-easing.min.js │ │ ├── previewer-gradient │ │ │ ├── index.html │ │ │ ├── prism-previewer-gradient.css │ │ │ ├── prism-previewer-gradient.js │ │ │ └── prism-previewer-gradient.min.js │ │ ├── previewer-time │ │ │ ├── index.html │ │ │ ├── prism-previewer-time.css │ │ │ ├── prism-previewer-time.js │ │ │ └── prism-previewer-time.min.js │ │ ├── remove-initial-line-feed │ │ │ ├── index.html │ │ │ ├── prism-remove-initial-line-feed.js │ │ │ └── prism-remove-initial-line-feed.min.js │ │ ├── show-invisibles │ │ │ ├── index.html │ │ │ ├── prism-show-invisibles.css │ │ │ ├── prism-show-invisibles.js │ │ │ └── prism-show-invisibles.min.js │ │ ├── show-language │ │ │ ├── index.html │ │ │ ├── prism-show-language.css │ │ │ ├── prism-show-language.js │ │ │ └── prism-show-language.min.js │ │ └── wpd │ │ │ ├── index.html │ │ │ ├── prism-wpd.css │ │ │ ├── prism-wpd.js │ │ │ └── prism-wpd.min.js │ │ ├── prefixfree.min.js │ │ ├── prism.js │ │ ├── style.css │ │ ├── templates │ │ ├── footer.html │ │ ├── header-download.html │ │ ├── header-main.html │ │ └── header-plugins.html │ │ ├── test-suite.html │ │ ├── test.html │ │ ├── tests │ │ ├── helper │ │ │ ├── components.js │ │ │ ├── prism-loader.js │ │ │ ├── test-case.js │ │ │ ├── test-discovery.js │ │ │ └── token-stream-transformer.js │ │ ├── languages │ │ │ ├── abap │ │ │ │ ├── comment_feature.test │ │ │ │ ├── eol-comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string-template_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── actionscript │ │ │ │ ├── keyword_feature.test │ │ │ │ └── operator_feature.test │ │ │ ├── apacheconf │ │ │ │ ├── comment_feature.test │ │ │ │ ├── directive-block_feature.test │ │ │ │ ├── directive-flags_feature.test │ │ │ │ ├── directive-inline_feature.test │ │ │ │ ├── regex_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── apl │ │ │ │ ├── assignment_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── constant_feature.test │ │ │ │ ├── dfn_feature.test │ │ │ │ ├── dyadic-operator_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── monadic-operator_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── statement_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── system-function_feature.test │ │ │ ├── applescript │ │ │ │ ├── class_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── asciidoc │ │ │ │ ├── admonition_feature.test │ │ │ │ ├── attribute-entry_feature.test │ │ │ │ ├── attributes_feature.test │ │ │ │ ├── callout_feature.test │ │ │ │ ├── comment-block_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── entity_feature.test │ │ │ │ ├── hr_feature.test │ │ │ │ ├── indented-block_feature.test │ │ │ │ ├── inline_feature.test │ │ │ │ ├── line-continuation_feature.test │ │ │ │ ├── list-label_feature.test │ │ │ │ ├── list-punctuation_feature.test │ │ │ │ ├── literal-block_feature.test │ │ │ │ ├── macro_feature.test │ │ │ │ ├── other-block_feature.test │ │ │ │ ├── page-break_feature.test │ │ │ │ ├── passthrough-block_feature.test │ │ │ │ ├── replacement_feature.test │ │ │ │ ├── table_feature.test │ │ │ │ └── title_feature.test │ │ │ ├── aspnet │ │ │ │ ├── comment_feature.test │ │ │ │ └── page-directive_feature.test │ │ │ ├── autohotkey │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── builtin_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── constant_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── important_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── selector_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ ├── symbol_feature.test │ │ │ │ ├── tag_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── autoit │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── directive_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ ├── url_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── bash │ │ │ │ ├── arithmetic_environment_feature.test │ │ │ │ ├── command_substitution_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── shebang_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── basic │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── batch │ │ │ │ ├── command_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ └── label_feature.test │ │ │ ├── bison │ │ │ │ ├── c_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── property_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── brainfuck │ │ │ │ └── all_feature.test │ │ │ ├── c+pure │ │ │ │ └── c_inclusion.test │ │ │ ├── c │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── macro_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ └── operator_feature.test │ │ │ ├── clike │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── class-name_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── coffeescript+haml │ │ │ │ └── coffeescript_inclusion.test │ │ │ ├── coffeescript+jade │ │ │ │ └── coffeescript_inclusion.test │ │ │ ├── coffeescript │ │ │ │ ├── block-regex_feature.test │ │ │ │ ├── class-member_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── inline-javascript_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── property_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── cpp+pure │ │ │ │ └── cpp_inclusion.test │ │ │ ├── cpp │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── class-name_feature.test │ │ │ │ └── keyword_feature.test │ │ │ ├── crystal │ │ │ │ ├── attribute_feature.test │ │ │ │ ├── expansion_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ └── number_feature.test │ │ │ ├── csharp+aspnet │ │ │ │ └── directive_feature.test │ │ │ ├── csharp │ │ │ │ ├── issue806.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── preprocessor_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── css!+css-extras │ │ │ │ ├── entity_feature.test │ │ │ │ ├── hexcode_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ └── selector_feature.test │ │ │ ├── css+haml │ │ │ │ └── css+haml_usage.test │ │ │ ├── css+textile │ │ │ │ └── css_inclusion.test │ │ │ ├── css │ │ │ │ ├── atrule_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── important_feature.test │ │ │ │ ├── property_feature.test │ │ │ │ ├── selector_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── url_feature.test │ │ │ ├── d │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── property_feature.test │ │ │ │ ├── register_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── token-string_feature.test │ │ │ ├── dart │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── metadata_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── diff │ │ │ │ ├── coord_feature.test │ │ │ │ └── diff_feature.test │ │ │ ├── docker │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── eiffel │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── char_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── elixir │ │ │ │ ├── atom_feature.test │ │ │ │ ├── attr-name_feature.test │ │ │ │ ├── attribute_feature.test │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── capture_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── issue775.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── regex_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── erlang │ │ │ │ ├── atom_feature.test │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── fortran+pure │ │ │ │ └── fortran_inclusion.test │ │ │ ├── fortran │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── fsharp │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── preprocessor_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── gherkin │ │ │ │ ├── atrule_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── feature_feature.test │ │ │ │ ├── outline_feature.test │ │ │ │ ├── pystring_feature.test │ │ │ │ ├── scenario_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ ├── table_feature.test │ │ │ │ └── tag_feature.test │ │ │ ├── git │ │ │ │ ├── command_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── commit_sha1_feature.test │ │ │ │ ├── coord_feature.test │ │ │ │ ├── diff_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── glsl │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ └── preprocessor_feature.test │ │ │ ├── go │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── builtin_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── groovy │ │ │ │ ├── annotation_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── shebang_feature.test │ │ │ │ ├── spock-block_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── haml │ │ │ │ ├── code_feature.test │ │ │ │ ├── doctype_feature.test │ │ │ │ ├── interpolation_feature.test │ │ │ │ ├── multiline-code_feature.test │ │ │ │ ├── multiline-comment_feature.test │ │ │ │ └── tag_feature.test │ │ │ ├── handlebars+jade │ │ │ │ └── handlebars_inclusion.test │ │ │ ├── handlebars │ │ │ │ ├── block_feature.test │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── haskell │ │ │ │ ├── builtin_feature.test │ │ │ │ ├── char_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── constant_feature.test │ │ │ │ ├── hvariable_feature.test │ │ │ │ ├── import_statement_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── haxe │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── metadata_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── preprocessor_feature.test │ │ │ │ ├── regex_feature.test │ │ │ │ ├── reification_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── http │ │ │ │ ├── header-name_feature.test │ │ │ │ ├── request-line_feature.test │ │ │ │ └── response-status_feature.test │ │ │ ├── icon │ │ │ │ ├── builtin-keyword_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── directive_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── inform7 │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── position_feature.test │ │ │ │ ├── property_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ ├── title_feature.test │ │ │ │ ├── variable_feature.test │ │ │ │ └── verb_feature.test │ │ │ ├── ini │ │ │ │ ├── comment_feature.test │ │ │ │ ├── important_feature.test │ │ │ │ └── key_value_feature.test │ │ │ ├── j │ │ │ │ ├── adverb_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── conjunction_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── verb_feature.test │ │ │ ├── jade │ │ │ │ ├── code_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── doctype_feature.test │ │ │ │ ├── flow-control_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── mixin_feature.test │ │ │ │ ├── multiline-plain-text_feature.test │ │ │ │ ├── multiline-script_feature.test │ │ │ │ ├── plain-text_feature.test │ │ │ │ ├── script_feature.test │ │ │ │ └── tag_feature.test │ │ │ ├── java │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ └── operator_feature.test │ │ │ ├── javascript+haml │ │ │ │ └── javascript_inclusion.test │ │ │ ├── javascript+http │ │ │ │ └── javascript_inclusion.test │ │ │ ├── javascript │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── regex_feature.test │ │ │ │ └── template-string_feature.test │ │ │ ├── jsx │ │ │ │ └── tag_feature.test │ │ │ ├── julia │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── keyman │ │ │ │ ├── atrule_feature.test │ │ │ │ ├── bold_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── tag_feature.test │ │ │ ├── kotlin │ │ │ │ ├── annotation_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── interpolation_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── label_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── raw-string_feature.test │ │ │ ├── latex │ │ │ │ ├── cdata_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── equation_feature.test │ │ │ │ ├── headline_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ └── url_feature.test │ │ │ ├── less+haml │ │ │ │ └── less_inclusion.test │ │ │ ├── less+jade │ │ │ │ └── less_inclusion.test │ │ │ ├── less │ │ │ │ ├── atrule_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── property_feature.test │ │ │ │ └── selector_feature.test │ │ │ ├── lolcode │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── label_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ ├── symbol_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── lua │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── makefile │ │ │ │ ├── builtin_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ ├── symbol_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── markdown+haml │ │ │ │ └── markdown_inclusion.test │ │ │ ├── markdown+jade │ │ │ │ └── markdown_inclusion.test │ │ │ ├── markdown │ │ │ │ ├── blockquote_feature.test │ │ │ │ ├── bold_feature.test │ │ │ │ ├── code_feature.test │ │ │ │ ├── hr_feature.test │ │ │ │ ├── italic_feature.test │ │ │ │ ├── list_feature.test │ │ │ │ ├── title_feature.test │ │ │ │ ├── url-reference_feature.test │ │ │ │ └── url_feature.test │ │ │ ├── markup!+css │ │ │ │ └── css_inclusion.test │ │ │ ├── markup!+javascript │ │ │ │ └── javascript_inclusion.test │ │ │ ├── markup+actionscript │ │ │ │ └── xml_feature.test │ │ │ ├── markup+css+wiki │ │ │ │ └── table-tag_feature.test │ │ │ ├── markup+haml │ │ │ │ └── markup_feature.test │ │ │ ├── markup+http │ │ │ │ └── markup_inclusion.test │ │ │ ├── markup+jade │ │ │ │ └── markup_feature.test │ │ │ ├── markup+javascript+csharp+aspnet │ │ │ │ └── script_feature.test │ │ │ ├── markup+php │ │ │ │ └── markup_feature.test │ │ │ ├── markup │ │ │ │ ├── cdata_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── doctype_feature.test │ │ │ │ ├── entity_feature.test │ │ │ │ ├── issue585.test │ │ │ │ ├── prolog_feature.test │ │ │ │ ├── tag_attribute_feature.test │ │ │ │ └── tag_feature.test │ │ │ ├── matlab │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── mel │ │ │ │ ├── code_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── flag_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── mizar │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── parameter_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── monkey │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── preprocessor_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── type-char_feature.test │ │ │ ├── nasm │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── label_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── register_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── nginx │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── nim │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── nix │ │ │ │ ├── antiquotation_feature.test │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── url_feature.test │ │ │ ├── nsis │ │ │ │ ├── comment_feature.test │ │ │ │ ├── important_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── property_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── objectivec │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── ocaml │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── directive_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── type_feature.test │ │ │ ├── oz │ │ │ │ ├── atom_feature.test │ │ │ │ ├── attr-name_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── parigp │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── parser │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── escape_feature.test │ │ │ │ ├── expression_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── parser-comment_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── pascal │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── perl │ │ │ │ ├── comment_feature.test │ │ │ │ ├── filehandle_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── regex_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ ├── variable_feature.test │ │ │ │ └── vstring_feature.test │ │ │ ├── php!+php-extras │ │ │ │ ├── global_feature.test │ │ │ │ ├── scope_feature.test │ │ │ │ └── this_feature.test │ │ │ ├── php │ │ │ │ ├── comment_feature.test │ │ │ │ ├── constant_feature.test │ │ │ │ ├── delimiter_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── package_feature.test │ │ │ │ ├── property_feature.test │ │ │ │ ├── shell-comment_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── powershell │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── namespace_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── processing │ │ │ │ ├── constant_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── type_feature.test │ │ │ ├── prolog │ │ │ │ ├── builtin_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── puppet │ │ │ │ ├── attr-name_feature.test │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── datatype_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── heredoc_feature.test │ │ │ │ ├── interpolation_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── regex_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── pure │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── special_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── python │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── class-name_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── triple-quoted-string_feature.test │ │ │ ├── q │ │ │ │ ├── adverb_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── datetime_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ ├── symbol_feature.test │ │ │ │ └── verb_feature.test │ │ │ ├── qore │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── r │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── ellipsis_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── percent-operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── rest │ │ │ │ ├── command-line-option_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── directive_feature.test │ │ │ │ ├── doctest-block_feature.test │ │ │ │ ├── field_feature.test │ │ │ │ ├── hr_feature.test │ │ │ │ ├── inline_feature.test │ │ │ │ ├── link-target_feature.test │ │ │ │ ├── link_feature.test │ │ │ │ ├── list-bullet_feature.test │ │ │ │ ├── literal-block_feature.test │ │ │ │ ├── quoted-literal-block_feature.test │ │ │ │ ├── substitution-def_feature.test │ │ │ │ ├── table_feature.test │ │ │ │ └── title_feature.test │ │ │ ├── rip │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── builtin_feature.test │ │ │ │ ├── character_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── date_time_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── reference_feature.test │ │ │ │ ├── regex_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── symbol_feature.test │ │ │ ├── roboconf │ │ │ │ ├── comment_feature.test │ │ │ │ ├── component_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── optional_feature.test │ │ │ │ ├── property_feature.test │ │ │ │ ├── value_feature.test │ │ │ │ └── wildcard_feature.test │ │ │ ├── ruby │ │ │ │ ├── builtin_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── constant_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── regex_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ ├── symbol_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── rust │ │ │ │ ├── attribute_feature.test │ │ │ │ ├── closure-params_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── macro-rules_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── sas │ │ │ │ ├── comment_feature.test │ │ │ │ ├── datalines_feature.test │ │ │ │ ├── datetime_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── sass │ │ │ │ ├── atrule-line_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── property-line_feature.test │ │ │ │ ├── selector_feature.test │ │ │ │ └── variable-line_feature.test │ │ │ ├── scala │ │ │ │ ├── builtin_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── symbol_feature.test │ │ │ ├── scheme │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── builtin_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── scss+haml │ │ │ │ └── scss_inclusion.test │ │ │ ├── scss+jade │ │ │ │ └── scss_inclusion.test │ │ │ ├── scss │ │ │ │ ├── atrule_feature.test │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── null_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── placeholder_feature.test │ │ │ │ ├── selector_feature.test │ │ │ │ ├── statement_feature.test │ │ │ │ ├── url_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── smalltalk │ │ │ │ ├── block-arguments_feature.test │ │ │ │ ├── character_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ ├── symbol_feature.test │ │ │ │ └── temporary-variables_feature.test │ │ │ ├── smarty │ │ │ │ ├── attr-name_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── smarty-comment_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── sql │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── stylus+jade │ │ │ │ └── stylus_inclusion.test │ │ │ ├── stylus │ │ │ │ ├── atrule-declaration_feature.test │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── func_feature.test │ │ │ │ ├── hexcode_feature.test │ │ │ │ ├── important_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── property-declaration_feature.test │ │ │ │ ├── selector_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ ├── url_feature.test │ │ │ │ └── variable-declaration_feature.test │ │ │ ├── swift │ │ │ │ ├── atrule_feature.test │ │ │ │ ├── builtin_feature.test │ │ │ │ ├── constant_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── tcl │ │ │ │ ├── builtin_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── scope_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── variable_feature.test │ │ │ ├── textile │ │ │ │ ├── acronym_feature.test │ │ │ │ ├── block-tag_feature.test │ │ │ │ ├── footnote_feature.test │ │ │ │ ├── image_feature.test │ │ │ │ ├── inline_feature.test │ │ │ │ ├── link-ref_feature.test │ │ │ │ ├── link_feature.test │ │ │ │ ├── list_feature.test │ │ │ │ ├── mark_feature.test │ │ │ │ └── table_feature.test │ │ │ ├── twig+jade │ │ │ │ └── twig_inclusion.test │ │ │ ├── twig │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── typescript │ │ │ │ └── keyword_feature.test │ │ │ ├── verilog │ │ │ │ ├── comment_feature.test │ │ │ │ ├── constant_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── important_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── property_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── vhdl │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── constant_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── vhdl-vectors_feature.test │ │ │ ├── vim │ │ │ │ ├── builtin_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── function_feature.test │ │ │ │ ├── keyword_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── operator_feature.test │ │ │ │ └── string_feature.test │ │ │ ├── wiki │ │ │ │ ├── block-comment_feature.test │ │ │ │ ├── emphasis_feature.test │ │ │ │ ├── heading_feature.test │ │ │ │ ├── hr_feature.test │ │ │ │ ├── nowiki_feature.test │ │ │ │ ├── symbol_feature.test │ │ │ │ ├── url_feature.test │ │ │ │ └── variable_feature.test │ │ │ └── yaml │ │ │ │ ├── boolean_feature.test │ │ │ │ ├── comment_feature.test │ │ │ │ ├── datetime_feature.test │ │ │ │ ├── directive_feature.test │ │ │ │ ├── important_feature.test │ │ │ │ ├── key_feature.test │ │ │ │ ├── null_feature.test │ │ │ │ ├── number_feature.test │ │ │ │ ├── scalar_feature.test │ │ │ │ ├── string_feature.test │ │ │ │ └── tag_feature.test │ │ ├── run-child.js │ │ ├── run.js │ │ └── testrunner-tests.js │ │ ├── themes │ │ ├── prism-coy.css │ │ ├── prism-dark.css │ │ ├── prism-funky.css │ │ ├── prism-okaidia.css │ │ ├── prism-tomorrow.css │ │ ├── prism-twilight.css │ │ └── prism.css │ │ ├── utopia.js │ │ └── vendor │ │ └── promise.js └── reveal.js │ ├── .bower.json │ ├── CONTRIBUTING.md │ ├── Gruntfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── css │ ├── print │ │ ├── paper.css │ │ └── pdf.css │ ├── reveal.css │ ├── reveal.scss │ └── theme │ │ ├── README.md │ │ ├── beige.css │ │ ├── black.css │ │ ├── blood.css │ │ ├── league.css │ │ ├── moon.css │ │ ├── night.css │ │ ├── serif.css │ │ ├── simple.css │ │ ├── sky.css │ │ ├── solarized.css │ │ ├── source │ │ ├── beige.scss │ │ ├── black.scss │ │ ├── blood.scss │ │ ├── league.scss │ │ ├── moon.scss │ │ ├── night.scss │ │ ├── serif.scss │ │ ├── simple.scss │ │ ├── sky.scss │ │ ├── solarized.scss │ │ └── white.scss │ │ ├── template │ │ ├── mixins.scss │ │ ├── settings.scss │ │ └── theme.scss │ │ └── white.css │ ├── index.html │ ├── js │ └── reveal.js │ ├── lib │ ├── css │ │ └── zenburn.css │ ├── font │ │ ├── league-gothic │ │ │ ├── LICENSE │ │ │ ├── league-gothic.css │ │ │ ├── league-gothic.eot │ │ │ ├── league-gothic.ttf │ │ │ └── league-gothic.woff │ │ └── source-sans-pro │ │ │ ├── LICENSE │ │ │ ├── source-sans-pro-italic.eot │ │ │ ├── source-sans-pro-italic.ttf │ │ │ ├── source-sans-pro-italic.woff │ │ │ ├── source-sans-pro-regular.eot │ │ │ ├── source-sans-pro-regular.ttf │ │ │ ├── source-sans-pro-regular.woff │ │ │ ├── source-sans-pro-semibold.eot │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ ├── source-sans-pro-semibold.woff │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ └── source-sans-pro.css │ └── js │ │ ├── classList.js │ │ ├── head.min.js │ │ └── html5shiv.js │ ├── package.json │ └── plugin │ ├── highlight │ └── highlight.js │ ├── markdown │ ├── example.html │ ├── example.md │ ├── markdown.js │ └── marked.js │ ├── math │ └── math.js │ ├── multiplex │ ├── client.js │ ├── index.js │ └── master.js │ ├── notes-server │ ├── client.js │ ├── index.js │ └── notes.html │ ├── notes │ ├── notes.html │ └── notes.js │ ├── print-pdf │ └── print-pdf.js │ ├── search │ └── search.js │ └── zoom-js │ └── zoom.js ├── dist ├── app.min.js ├── app.min.js.map └── main.min.css ├── index.html └── src ├── css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── images │ ├── AngularJS-large.png │ ├── AngularJS-small.png │ ├── logo-code-school-ps.svg │ ├── logo-nav.png │ ├── logo.png │ ├── logo2.png │ └── og │ │ ├── 01.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 04.png │ │ ├── 05.png │ │ ├── 06.png │ │ ├── 07.png │ │ ├── 08.png │ │ ├── 09.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 30.png │ │ ├── 30.png.1 │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 34.png │ │ ├── 35.png │ │ ├── 36.png │ │ ├── 37.png │ │ ├── 38.png │ │ ├── 39.png │ │ ├── 40.png │ │ ├── animal_sprites_1.png │ │ └── camera.png ├── sass │ ├── base │ │ └── _base.scss │ ├── layout │ │ └── _header.scss │ ├── main.scss │ └── pages │ │ ├── _login.scss │ │ └── _og.scss └── stylesheets │ └── main.css └── js ├── app.js ├── component ├── common │ └── directives.js └── demo │ ├── demo14.directive.js │ └── demo14_tpl.html ├── config.js ├── controller ├── login.controllers.js └── og.controllers.js ├── directive └── dragbox.directive.js ├── filters.js └── model ├── logger.js └── model.js /getstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/getstart.png -------------------------------------------------------------------------------- /public/bower_components/angular-legacy/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/angular-legacy/angular.min.js.gzip -------------------------------------------------------------------------------- /public/bower_components/angular-legacy/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.2.28", 4 | "main": "./angular.js", 5 | "ignore": [], 6 | "dependencies": { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /public/bower_components/angular-old/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.0.8", 4 | "main": "./angular.js", 5 | "dependencies": { 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /public/bower_components/angular-route/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-route", 3 | "version": "1.4.8", 4 | "main": "./angular-route.js", 5 | "ignore": [], 6 | "dependencies": { 7 | "angular": "1.4.8" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /public/bower_components/angular-route/index.js: -------------------------------------------------------------------------------- 1 | require('./angular-route'); 2 | module.exports = 'ngRoute'; 3 | -------------------------------------------------------------------------------- /public/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- 1 | /* Include this file in your html if you are using the CSP mode. */ 2 | 3 | @charset "UTF-8"; 4 | 5 | [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], 6 | .ng-cloak, .x-ng-cloak, 7 | .ng-hide:not(.ng-hide-animate) { 8 | display: none !important; 9 | } 10 | 11 | ng\:form { 12 | display: block; 13 | } 14 | 15 | .ng-animate-shim { 16 | visibility:hidden; 17 | } 18 | 19 | .ng-anchor { 20 | position:absolute; 21 | } 22 | -------------------------------------------------------------------------------- /public/bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /public/bower_components/angular/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular", 3 | "version": "1.5.2", 4 | "license": "MIT", 5 | "main": "./angular.js", 6 | "ignore": [], 7 | "dependencies": { 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /public/bower_components/angular/index.js: -------------------------------------------------------------------------------- 1 | require('./angular'); 2 | module.exports = angular; 3 | -------------------------------------------------------------------------------- /public/bower_components/angularfire/index.js: -------------------------------------------------------------------------------- 1 | require('./dist/angularfire'); 2 | module.exports = 'firebase'; 3 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs. 2 | 3 | See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. 4 | 5 | Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release. 6 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/bower_components/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends" : "../js/.jshintrc", 3 | "asi" : false, 4 | "browser" : false, 5 | "es3" : false, 6 | "node" : true 7 | } 8 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "asi" : true, 3 | "browser" : true, 4 | "eqeqeq" : false, 5 | "eqnull" : true, 6 | "es3" : true, 7 | "expr" : true, 8 | "jquery" : true, 9 | "latedef" : true, 10 | "laxbreak" : true, 11 | "nonbsp" : true, 12 | "strict" : true, 13 | "undef" : true, 14 | "unused" : true 15 | } 16 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // Default 5 | outline: thin dotted; 6 | // WebKit 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /public/bower_components/es6-promise-4.2.6/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /promises_tests 3 | /main.js 4 | /tmp 5 | /docs 6 | /dist 7 | -------------------------------------------------------------------------------- /public/bower_components/es6-promise-4.2.6/.spmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /tmp 3 | /tasks 4 | /test 5 | /vendor 6 | /.jshintrc 7 | /.npmignore 8 | /.travis.yml 9 | /Gruntfile.js 10 | /component.json 11 | /index.html 12 | -------------------------------------------------------------------------------- /public/bower_components/es6-promise-4.2.6/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "9" 4 | - "8" 5 | - "6" 6 | - "4" 7 | 8 | before_install: 9 | - nvm install 6 10 | - nvm use 6 11 | - export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH 12 | 13 | before_script: 14 | - nvm use $TRAVIS_NODE_VERSION 15 | env: 16 | global: 17 | - EMBER_ENV=production 18 | -------------------------------------------------------------------------------- /public/bower_components/es6-promise-4.2.6/auto.js: -------------------------------------------------------------------------------- 1 | // This file can be required in Browserify and Node.js for automatic polyfill 2 | // To use it: require('es6-promise/auto'); 3 | 'use strict'; 4 | module.exports = require('./').polyfill(); 5 | -------------------------------------------------------------------------------- /public/bower_components/es6-promise-4.2.6/config/versionTemplate.txt: -------------------------------------------------------------------------------- 1 | /*! 2 | * @overview es6-promise - a tiny implementation of Promises/A+. 3 | * @copyright Copyright (c) 2014 Yehuda Katz, Tom Dale, Stefan Penner and contributors (Conversion to ES6 API by Jake Archibald) 4 | * @license Licensed under MIT license 5 | * See https://raw.githubusercontent.com/stefanpenner/es6-promise/master/LICENSE 6 | * @version VERSION_PLACEHOLDER_STRING 7 | */ 8 | -------------------------------------------------------------------------------- /public/bower_components/es6-promise-4.2.6/lib/es6-promise.auto.js: -------------------------------------------------------------------------------- 1 | import Promise from './es6-promise'; 2 | Promise.polyfill(); 3 | export default Promise; 4 | -------------------------------------------------------------------------------- /public/bower_components/es6-promise-4.2.6/lib/es6-promise.js: -------------------------------------------------------------------------------- 1 | import Promise from './es6-promise/promise'; 2 | import polyfill from './es6-promise/polyfill'; 3 | 4 | // Strange compat.. 5 | Promise.polyfill = polyfill; 6 | Promise.Promise = Promise; 7 | export default Promise; 8 | -------------------------------------------------------------------------------- /public/bower_components/es6-promise-4.2.6/server/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true 3 | } 4 | -------------------------------------------------------------------------------- /public/bower_components/es6-promise-4.2.6/server/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(app) { 2 | app.get('/', function(req, res) { 3 | res.redirect('/test/'); 4 | }) 5 | }; 6 | -------------------------------------------------------------------------------- /public/bower_components/es6-promise-4.2.6/test/index.js: -------------------------------------------------------------------------------- 1 | require('./test-adapter.js'); 2 | require('./scheduler-test.js'); 3 | require('./extension-test.js'); 4 | require('promises-aplus-tests-phantom/lib/testFiles'); 5 | -------------------------------------------------------------------------------- /public/bower_components/firebase/README.md: -------------------------------------------------------------------------------- 1 | firebase-bower 2 | ============== 3 | 4 | To use firebase via bower, do: 5 | 6 | bower install firebase 7 | 8 | NOTE: This repo is automatically generated and is not monitored for issues / pull requests. Please contact support@firebase.com for any bugs/suggestions on Firebase or the bower module. 9 | 10 | LICENSE - Refer to: https://www.firebase.com/terms/terms-of-service.html 11 | -------------------------------------------------------------------------------- /public/bower_components/google-code-prettify/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "google-code-prettify", 3 | "version": "1.0.1", 4 | "main": [ 5 | "./bin/prettify.min.css", 6 | "./bin/prettify.min.js" 7 | ], 8 | "dependencies": {}, 9 | "ignore": [ 10 | "closure-compiler", 11 | "js-modules", 12 | "tests", 13 | "yui-compressor", 14 | "Makefile" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/bower_components/html2canvas-0.4.1/.gitignore: -------------------------------------------------------------------------------- 1 | /nbproject/ 2 | /images/ 3 | /tests/templates/ 4 | /tests/cache/ 5 | /tests/flashcanvas.html 6 | /lib/ 7 | /bin/ 8 | image.jpg 9 | /.project 10 | /.settings/ 11 | /tests/certificate.pem 12 | node_modules/ 13 | .envrc 14 | server.js 15 | *.sublime-workspace 16 | chromedriver.log 17 | *.baseline 18 | *.iml 19 | .idea/ 20 | .DS_Store 21 | -------------------------------------------------------------------------------- /public/bower_components/html2canvas-0.4.1/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "html2canvas", 3 | "version": "0.4.1", 4 | "description": "Screenshots with JavaScript", 5 | "main": "build/html2canvas.js", 6 | "ignore": [ 7 | "tests", 8 | ".travis.yml" 9 | ] 10 | } -------------------------------------------------------------------------------- /public/bower_components/html2canvas-0.4.1/tests/assets/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/html2canvas-0.4.1/tests/assets/image2.jpg -------------------------------------------------------------------------------- /public/bower_components/html2canvas-0.4.1/tests/assets/image2_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/html2canvas-0.4.1/tests/assets/image2_1.jpg -------------------------------------------------------------------------------- /public/bower_components/html2canvas-0.4.1/tests/assets/image_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/html2canvas-0.4.1/tests/assets/image_1.jpg -------------------------------------------------------------------------------- /public/bower_components/html2canvas-0.4.1/tests/cases/iframe.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |To use this language, use the class "language-ini".
3 | 4 |; This is a comment
6 |
7 | [owner]
9 | [database]
10 |
11 | name=prism
13 | file="somefile.txt"
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/examples/prism-latex.html:
--------------------------------------------------------------------------------
1 | To use this language, use the class "language-latex".
3 | 4 |% This is a comment
6 |
7 | \begin{document}
9 | \documentstyle[twoside,epsfig]{article}
10 | \usepackage{epsfig,multicol}
11 |
12 | $\alpha$
14 | H$_{2}$O
15 | 45$^{\circ}$C
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/examples/prism-rip.html:
--------------------------------------------------------------------------------
1 | To use this language, use the class "language-rip".
3 | 4 |# This is a comment
6 |
7 | "foo \"bar\" baz"
9 | 'foo \'bar\' baz'
10 |
11 | regular_expression = /abc/
13 |
14 | string_symbol = :rip
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/prism/prism-1.3.0/favicon.png
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/img/logo-ala.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/prism/prism-1.3.0/img/logo-ala.png
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/img/logo-css-tricks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/prism/prism-1.3.0/img/logo-css-tricks.png
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/img/logo-mdn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/prism/prism-1.3.0/img/logo-mdn.png
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/img/logo-sitepoint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/prism/prism-1.3.0/img/logo-sitepoint.png
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/img/logo-smashing.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/prism/prism-1.3.0/img/logo-smashing.png
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/img/screen-us-web-design-standards.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/prism/prism-1.3.0/img/screen-us-web-design-standards.png
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/img/spectrum.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/prism/prism-1.3.0/img/spectrum.png
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/plugins/autolinker/prism-autolinker.css:
--------------------------------------------------------------------------------
1 | .token a {
2 | color: inherit;
3 | }
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/plugins/highlight-keywords/prism-highlight-keywords.js:
--------------------------------------------------------------------------------
1 | (function(){
2 |
3 | if (
4 | typeof self !== 'undefined' && !self.Prism ||
5 | typeof global !== 'undefined' && !global.Prism
6 | ) {
7 | return;
8 | }
9 |
10 | Prism.hooks.add('wrap', function(env) {
11 | if (env.type !== "keyword") {
12 | return;
13 | }
14 | env.classes.push('keyword-' + env.content);
15 | });
16 |
17 | })();
18 |
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/plugins/highlight-keywords/prism-highlight-keywords.min.js:
--------------------------------------------------------------------------------
1 | !function(){"undefined"!=typeof self&&!self.Prism||"undefined"!=typeof global&&!global.Prism||Prism.hooks.add("wrap",function(e){"keyword"===e.type&&e.classes.push("keyword-"+e.content)})}();
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/plugins/ie8/prism-ie8.css:
--------------------------------------------------------------------------------
1 | .token a {
2 | color: inherit;
3 | }
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/plugins/previewer-color/prism-previewer-color.css:
--------------------------------------------------------------------------------
1 | .prism-previewer-color {
2 | background-image: linear-gradient(45deg, #bbb 25%, transparent 25%, transparent 75%, #bbb 75%, #bbb), linear-gradient(45deg, #bbb 25%, #eee 25%, #eee 75%, #bbb 75%, #bbb);
3 | background-size: 10px 10px;
4 | background-position: 0 0, 5px 5px;
5 | }
6 | .prism-previewer-color:before {
7 | background-color: inherit;
8 | background-clip: padding-box;
9 | }
10 |
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/plugins/remove-initial-line-feed/prism-remove-initial-line-feed.min.js:
--------------------------------------------------------------------------------
1 | !function(){"undefined"!=typeof self&&self.Prism&&self.document&&Prism.hooks.add("before-highlight",function(e){if(e.code){var s=e.element.parentNode,n=/\s*\bkeep-initial-line-feed\b\s*/;!s||"pre"!==s.nodeName.toLowerCase()||n.test(s.className)||n.test(e.element.className)||(e.code=e.code.replace(/^(?:\r?\n|\r)/,""))}})}();
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/plugins/show-invisibles/prism-show-invisibles.css:
--------------------------------------------------------------------------------
1 | .token.tab:not(:empty):before,
2 | .token.cr:before,
3 | .token.lf:before {
4 | color: hsl(24, 20%, 85%);
5 | }
6 |
7 | .token.tab:not(:empty):before {
8 | content: '\21E5';
9 | }
10 |
11 | .token.cr:before {
12 | content: '\240D';
13 | }
14 |
15 | .token.crlf:before {
16 | content: '\240D\240A';
17 | }
18 | .token.lf:before {
19 | content: '\240A';
20 | }
21 |
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/plugins/show-invisibles/prism-show-invisibles.min.js:
--------------------------------------------------------------------------------
1 | !function(){if(("undefined"==typeof self||self.Prism)&&("undefined"==typeof global||global.Prism))for(var f in Prism.languages){var n=Prism.languages[f];n.tab=/\t/g,n.crlf=/\r\n/g,n.lf=/\n/g,n.cr=/\r/g}}();
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/plugins/wpd/prism-wpd.css:
--------------------------------------------------------------------------------
1 | code[class*="language-"] a[href],
2 | pre[class*="language-"] a[href] {
3 | cursor: help;
4 | text-decoration: none;
5 | }
6 |
7 | code[class*="language-"] a[href]:hover,
8 | pre[class*="language-"] a[href]:hover {
9 | cursor: help;
10 | text-decoration: underline;
11 | }
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/templates/header-download.html:
--------------------------------------------------------------------------------
1 | Download Prism
2 | Customize your download to include only the languages and plugins you need and the compression level you prefer.
--------------------------------------------------------------------------------
/public/bower_components/prism/prism-1.3.0/templates/header-plugins.html:
--------------------------------------------------------------------------------
1 | 6 | Prism is a lightweight, extensible syntax highlighter, built with modern web standards in mind. 7 | It’s a spin-off from Dabblet and is tested there daily by thousands. 8 |
-------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/helper/components.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var fs = require("fs"); 4 | var vm = require("vm"); 5 | 6 | var fileContent = fs.readFileSync(__dirname + "/../../components.js", "utf8"); 7 | var context = {}; 8 | vm.runInNewContext(fileContent, context); 9 | 10 | module.exports = context.components; 11 | -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/abap/comment_feature.test: -------------------------------------------------------------------------------- 1 | * 2 | * Foobar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["comment", "*"], 8 | ["comment", "* Foobar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/abap/eol-comment_feature.test: -------------------------------------------------------------------------------- 1 | " 2 | " foobar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["eol-comment", "\""], 8 | ["eol-comment", "\" foobar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for EOL comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/abap/number_feature.test: -------------------------------------------------------------------------------- 1 | 0 2 | 42 3 | 123456789 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["number", "0"], 9 | ["number", "42"], 10 | ["number", "123456789"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for numbers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/apacheconf/directive-flags_feature.test: -------------------------------------------------------------------------------- 1 | [OR] 2 | [L,QSA] 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["directive-flags", "[OR]"], 8 | ["directive-flags", "[L,QSA]"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for directive flags. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/apacheconf/regex_feature.test: -------------------------------------------------------------------------------- 1 | ^(.*)$ 2 | ^foo 3 | bar$ 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["regex", "^(.*)$"], 9 | ["regex", "^foo"], 10 | ["regex", "bar$"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for regex. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/apacheconf/variable_feature.test: -------------------------------------------------------------------------------- 1 | $port 2 | ${docroot} 3 | %{REMOTE_HOST} 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["variable", "$port"], 9 | ["variable", "${docroot}"], 10 | ["variable", "%{REMOTE_HOST}"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for variables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/apl/assignment_feature.test: -------------------------------------------------------------------------------- 1 | a←1 2 3 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | "a", 7 | ["assignment", "←"], 8 | ["number", "1"], ["number", "2"], ["number", "3"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for assignment. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/apl/comment_feature.test: -------------------------------------------------------------------------------- 1 | ⍝ 2 | ⍝ Foobar 3 | #!/usr/bin/env runapl 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["comment", "⍝"], 9 | ["comment", "⍝ Foobar"], 10 | ["comment", "#!/usr/bin/env runapl"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/apl/constant_feature.test: -------------------------------------------------------------------------------- 1 | ⍬ 2 | ⌾ 3 | # 4 | ⎕ 5 | ⍞ 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["constant", "⍬"], 11 | ["constant", "⌾"], 12 | ["constant", "#"], 13 | ["constant", "⎕"], 14 | ["constant", "⍞"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for constants. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/apl/dyadic-operator_feature.test: -------------------------------------------------------------------------------- 1 | . ⍣ ⍠ 2 | ⍤ ∘ ⌸ 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["dyadic-operator", "."], ["dyadic-operator", "⍣"], ["dyadic-operator", "⍠"], 8 | ["dyadic-operator", "⍤"], ["dyadic-operator", "∘"], ["dyadic-operator", "⌸"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for dyadic operators. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/apl/statement_feature.test: -------------------------------------------------------------------------------- 1 | :Ab 2 | :FooBar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["statement", ":Ab"], 8 | ["statement", ":FooBar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for statements. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/apl/string_feature.test: -------------------------------------------------------------------------------- 1 | '' 2 | 'foobar' 3 | 'fo''obar' 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["string", "''"], 9 | ["string", "'foobar'"], 10 | ["string", "'fo''obar'"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/apl/system-function_feature.test: -------------------------------------------------------------------------------- 1 | ⎕IO 2 | ⎕WA 3 | ⎕CR 4 | ⎕TCNL 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["system-function", "⎕IO"], 10 | ["system-function", "⎕WA"], 11 | ["system-function", "⎕CR"], 12 | ["system-function", "⎕TCNL"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for system functions. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/applescript/number_feature.test: -------------------------------------------------------------------------------- 1 | 42 2 | 3.14159 3 | 3e10 4 | 4.2E-5 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["number", "42"], 10 | ["number", "3.14159"], 11 | ["number", "3e10"], 12 | ["number", "4.2E-5"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for numbers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/applescript/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "foo bar" 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["string", "\"\""], 8 | ["string", "\"foo bar\""] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/asciidoc/comment-block_feature.test: -------------------------------------------------------------------------------- 1 | //// 2 | //// 3 | 4 | //// 5 | Foobar 6 | 7 | Baz 8 | //// 9 | 10 | ---------------------------------------------------- 11 | 12 | [ 13 | ["comment-block", "////\r\n////"], 14 | ["comment-block", "////\r\nFoobar\r\n\r\nBaz\r\n////"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for comment blocks. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/asciidoc/hr_feature.test: -------------------------------------------------------------------------------- 1 | ''' 2 | 3 | '''''''''' 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["hr", "'''"], 9 | ["hr", "''''''''''"] 10 | ] 11 | 12 | ---------------------------------------------------- 13 | 14 | Checks for hr. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/asciidoc/page-break_feature.test: -------------------------------------------------------------------------------- 1 | <<< 2 | 3 | <<<<<<<<<<<<< 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["page-break", "<<<"], 9 | ["page-break", "<<<<<<<<<<<<<"] 10 | ] 11 | 12 | ---------------------------------------------------- 13 | 14 | Checks for page breaks. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/aspnet/comment_feature.test: -------------------------------------------------------------------------------- 1 | <%----%> 2 | <%--foo--%> 3 | <%-- foo 4 | bar --%> 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["asp comment", "<%----%>"], 10 | ["asp comment", "<%--foo--%>"], 11 | ["asp comment", "<%-- foo\r\nbar --%>"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/autohotkey/boolean_feature.test: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["boolean", "true"], 8 | ["boolean", "false"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for booleans -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/autohotkey/comment_feature.test: -------------------------------------------------------------------------------- 1 | ;foo 2 | ; bar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["comment", ";foo"], 8 | ["comment", "; bar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/autohotkey/function_feature.test: -------------------------------------------------------------------------------- 1 | foo( 2 | foo_bar( 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["function", "foo"], 8 | ["punctuation", "("], 9 | ["function", "foo_bar"], 10 | ["punctuation", "("] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for functions. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/autohotkey/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "foo" 3 | "foo""bar" 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["string", "\"\""], 9 | ["string", "\"foo\""], 10 | ["string", "\"foo\"\"bar\""] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/autohotkey/tag_feature.test: -------------------------------------------------------------------------------- 1 | foo: 2 | foo_bar: 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["tag", "foo"], 8 | ["punctuation", ":"], 9 | ["tag", "foo_bar"], 10 | ["punctuation", ":"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for tags (labels). -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/autohotkey/variable_feature.test: -------------------------------------------------------------------------------- 1 | %foo% 2 | %foo_bar% 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["variable", "%foo%"], 8 | ["variable", "%foo_bar%"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for variables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/autoit/boolean_feature.test: -------------------------------------------------------------------------------- 1 | True 2 | False 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["boolean", "True"], 8 | ["boolean", "False"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for booleans. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/autoit/directive_feature.test: -------------------------------------------------------------------------------- 1 | #NoTrayIcon 2 | #OnAutoItStartRegister "Example" 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["directive", "#NoTrayIcon"], 8 | ["directive", "#OnAutoItStartRegister"], ["string", ["\"Example\""]] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for directives. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/autoit/url_feature.test: -------------------------------------------------------------------------------- 1 | #include