├── .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 | iframe test 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/bower_components/html2canvas-0.4.1/tests/cases/images/svg.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Image tests 5 | 6 | 7 | 8 | 9 | SVG taints image:
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/bower_components/html2canvas-0.4.1/tests/results/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/attributes.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "./attributes/val", 4 | "./attributes/attr", 5 | "./attributes/prop", 6 | "./attributes/classes" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | }); 12 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/css/var/isHidden.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | // css is assumed 5 | ], function( jQuery ) { 6 | 7 | return function( elem, el ) { 8 | // isHidden might be called from jQuery#filter function; 9 | // in that case, element will be second argument 10 | elem = el || elem; 11 | return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); 12 | }; 13 | }); 14 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/deprecated.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "./traversing" 4 | ], function( jQuery ) { 5 | 6 | // The number of elements contained in the matched element set 7 | jQuery.fn.size = function() { 8 | return this.length; 9 | }; 10 | 11 | jQuery.fn.andSelf = jQuery.fn.addBack; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core", 3 | "../selector", 4 | "../effects" 5 | ], function( jQuery ) { 6 | 7 | jQuery.expr.filters.animated = function( elem ) { 8 | return jQuery.grep(jQuery.timers, function( fn ) { 9 | return elem === fn.elem; 10 | }).length; 11 | }; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/event/ajax.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core", 3 | "../event" 4 | ], function( jQuery ) { 5 | 6 | // Attach a bunch of functions for handling common AJAX events 7 | jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) { 8 | jQuery.fn[ type ] = function( fn ) { 9 | return this.on( type, fn ); 10 | }; 11 | }); 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../ajax" 3 | ], function( jQuery ) { 4 | 5 | jQuery._evalUrl = function( url ) { 6 | return jQuery.ajax({ 7 | url: url, 8 | type: "GET", 9 | dataType: "script", 10 | async: false, 11 | global: false, 12 | "throws": true 13 | }); 14 | }; 15 | 16 | return jQuery._evalUrl; 17 | 18 | }); 19 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/selector-sizzle.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "sizzle" 4 | ], function( jQuery, Sizzle ) { 5 | 6 | jQuery.find = Sizzle; 7 | jQuery.expr = Sizzle.selectors; 8 | jQuery.expr[":"] = jQuery.expr.pseudos; 9 | jQuery.unique = Sizzle.uniqueSort; 10 | jQuery.text = Sizzle.getText; 11 | jQuery.isXMLDoc = Sizzle.isXML; 12 | jQuery.contains = Sizzle.contains; 13 | 14 | }); 15 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | }); 7 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/var/deletedIds.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/var/push.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.push; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./deletedIds" 3 | ], function( deletedIds ) { 4 | return deletedIds.slice; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/var/support.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // All support tests are defined in their respective modules. 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /public/bower_components/jquery-legacy/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/ajax/parseJSON.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | // Support: Android 2.3 6 | // Workaround failure to string-cast null input 7 | jQuery.parseJSON = function( data ) { 8 | return JSON.parse( data + "" ); 9 | }; 10 | 11 | return jQuery.parseJSON; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "./attributes/attr", 4 | "./attributes/prop", 5 | "./attributes/classes", 6 | "./attributes/val" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | }); 12 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/css/var/isHidden.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | // css is assumed 5 | ], function( jQuery ) { 6 | 7 | return function( elem, el ) { 8 | // isHidden might be called from jQuery#filter function; 9 | // in that case, element will be second argument 10 | elem = el || elem; 11 | return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); 12 | }; 13 | }); 14 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/deprecated.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "./traversing" 4 | ], function( jQuery ) { 5 | 6 | // The number of elements contained in the matched element set 7 | jQuery.fn.size = function() { 8 | return this.length; 9 | }; 10 | 11 | jQuery.fn.andSelf = jQuery.fn.addBack; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core", 3 | "../selector", 4 | "../effects" 5 | ], function( jQuery ) { 6 | 7 | jQuery.expr.filters.animated = function( elem ) { 8 | return jQuery.grep(jQuery.timers, function( fn ) { 9 | return elem === fn.elem; 10 | }).length; 11 | }; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/event/ajax.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core", 3 | "../event" 4 | ], function( jQuery ) { 5 | 6 | // Attach a bunch of functions for handling common AJAX events 7 | jQuery.each( [ "ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend" ], function( i, type ) { 8 | jQuery.fn[ type ] = function( fn ) { 9 | return this.on( type, fn ); 10 | }; 11 | }); 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusinBubbles = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../ajax" 3 | ], function( jQuery ) { 4 | 5 | jQuery._evalUrl = function( url ) { 6 | return jQuery.ajax({ 7 | url: url, 8 | type: "GET", 9 | dataType: "script", 10 | async: false, 11 | global: false, 12 | "throws": true 13 | }); 14 | }; 15 | 16 | return jQuery._evalUrl; 17 | 18 | }); 19 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/selector-sizzle.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "sizzle" 4 | ], function( jQuery, Sizzle ) { 5 | 6 | jQuery.find = Sizzle; 7 | jQuery.expr = Sizzle.selectors; 8 | jQuery.expr[":"] = jQuery.expr.pseudos; 9 | jQuery.unique = Sizzle.uniqueSort; 10 | jQuery.text = Sizzle.getText; 11 | jQuery.isXMLDoc = Sizzle.isXML; 12 | jQuery.contains = Sizzle.contains; 13 | 14 | }); 15 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | }); 7 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // All support tests are defined in their respective modules. 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /public/bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | }); 6 | -------------------------------------------------------------------------------- /public/bower_components/ngstorage/.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | indent_style = space 8 | indent_size = 2 9 | end_of_line = lf 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | 13 | [*.md] 14 | trim_trailing_whitespace = false 15 | -------------------------------------------------------------------------------- /public/bower_components/ngstorage/.gitattributes: -------------------------------------------------------------------------------- 1 | # http://git-scm.com/docs/gitattributes 2 | 3 | * text=auto 4 | -------------------------------------------------------------------------------- /public/bower_components/ngstorage/.npmignore: -------------------------------------------------------------------------------- 1 | # https://docs.npmjs.com/misc/developers 2 | 3 | * 4 | !.gitignore 5 | !LICENSE 6 | !ngStorage.js 7 | !ngStorage.min.js 8 | -------------------------------------------------------------------------------- /public/bower_components/ngstorage/package.js: -------------------------------------------------------------------------------- 1 | Package.describe({ 2 | name: 'gsklee:ngstorage', 3 | version: '0.3.10', 4 | summary: 'ngStorage package for Meteor', 5 | git: 'https://github.com/gsklee/ngStorage', 6 | documentation: 'README.md' 7 | }); 8 | 9 | Package.onUse(function(api) { 10 | api.versionsFrom('METEOR@0.9.0.1'); 11 | api.use('urigo:angular@0.8.4', 'client'); 12 | api.addFiles('ngStorage.js', 'client'); 13 | }); 14 | -------------------------------------------------------------------------------- /public/bower_components/prism/.bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "prism", 3 | "homepage": "https://github.com/LeaVerou/prism", 4 | "version": "1.3.0", 5 | "_release": "1.3.0", 6 | "_resolution": { 7 | "type": "version", 8 | "tag": "v1.3.0", 9 | "commit": "ad97b23be583f01e84ec5f17197d2c2b109ca7d0" 10 | }, 11 | "_source": "git://github.com/LeaVerou/prism.git", 12 | "_target": "~1.3.0", 13 | "_originalSource": "prism", 14 | "_direct": true 15 | } -------------------------------------------------------------------------------- /public/bower_components/prism/archive.tar.gz.3431523316: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/prism/archive.tar.gz.3431523316 -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | insert_final_newline = false 5 | charset = utf-8 6 | indent_style = tab 7 | 8 | [tests/languages/**.test] 9 | end_of_line = crlf 10 | 11 | [{package.json,.travis.yml}] 12 | indent_style = space 13 | indent_size = 2 -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | 3 | # Test files should not have their line endings modified by git 4 | /tests/languages/**/*.test binary -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/.gitignore: -------------------------------------------------------------------------------- 1 | hide-*.js 2 | node_modules 3 | .idea/ 4 | .DS_Store -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | 4 | hide-*.js 5 | 6 | CNAME 7 | img 8 | templates 9 | *.html 10 | style.css 11 | favicon.png 12 | logo.svg 13 | download.js 14 | prefixfree.min.js 15 | utopia.js 16 | code.js 17 | components.js -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - "0.10" 5 | - "0.12" 6 | 7 | before_script: 8 | - npm install -g gulp 9 | - gulp 10 | 11 | script: npm test 12 | -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/CNAME: -------------------------------------------------------------------------------- 1 | prismjs.com -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-brainfuck.js: -------------------------------------------------------------------------------- 1 | Prism.languages.brainfuck = { 2 | 'pointer': { 3 | pattern: /<|>/, 4 | alias: 'keyword' 5 | }, 6 | 'increment': { 7 | pattern: /\+/, 8 | alias: 'inserted' 9 | }, 10 | 'decrement': { 11 | pattern: /-/, 12 | alias: 'deleted' 13 | }, 14 | 'branching': { 15 | pattern: /\[|\]/, 16 | alias: 'important' 17 | }, 18 | 'operator': /[.,]/, 19 | 'comment': /\S+/ 20 | }; -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-brainfuck.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.brainfuck={pointer:{pattern:/<|>/,alias:"keyword"},increment:{pattern:/\+/,alias:"inserted"},decrement:{pattern:/-/,alias:"deleted"},branching:{pattern:/\[|\]/,alias:"important"},operator:/[.,]/,comment:/\S+/}; -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-css-extras.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.css.selector={pattern:/[^\{\}\s][^\{\}]*(?=\s*\{)/,inside:{"pseudo-element":/:(?:after|before|first-letter|first-line|selection)|::[-\w]+/,"pseudo-class":/:[-\w]+(?:\(.*\))?/,"class":/\.[-:\.\w]+/,id:/#[-:\.\w]+/}},Prism.languages.insertBefore("css","function",{hexcode:/#[\da-f]{3,6}/i,entity:/\\[\da-f]{1,8}/i,number:/[\d%\.]+/}); -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-diff.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.diff={coord:[/^(?:\*{3}|-{3}|\+{3}).*$/m,/^@@.*@@$/m,/^\d+.*$/m],deleted:/^[-<].+$/m,inserted:/^[+>].+$/m,diff:{pattern:/^!(?!!).+$/m,alias:"important"}}; -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-docker.js: -------------------------------------------------------------------------------- 1 | Prism.languages.docker = { 2 | 'keyword': { 3 | pattern: /(^\s*)(?:ONBUILD|FROM|MAINTAINER|RUN|EXPOSE|ENV|ADD|COPY|VOLUME|USER|WORKDIR|CMD|LABEL|ENTRYPOINT)(?=\s)/mi, 4 | lookbehind: true 5 | }, 6 | 'string': /("|')(?:(?!\1)[^\\\r\n]|\\(?:\r\n|[\s\S]))*?\1/, 7 | 'comment': /#.*/, 8 | 'punctuation': /---|\.\.\.|[:[\]{}\-,|>?]/ 9 | }; -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-docker.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.docker={keyword:{pattern:/(^\s*)(?:ONBUILD|FROM|MAINTAINER|RUN|EXPOSE|ENV|ADD|COPY|VOLUME|USER|WORKDIR|CMD|LABEL|ENTRYPOINT)(?=\s)/im,lookbehind:!0},string:/("|')(?:(?!\1)[^\\\r\n]|\\(?:\r\n|[\s\S]))*?\1/,comment:/#.*/,punctuation:/---|\.\.\.|[:[\]{}\-,|>?]/}; -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-git.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.git={comment:/^#.*/m,deleted:/^[-–].*/m,inserted:/^\+.*/m,string:/("|')(\\?.)*?\1/m,command:{pattern:/^.*\$ git .*$/m,inside:{parameter:/\s(--|-)\w+/m}},coord:/^@@.*@@$/m,commit_sha1:/^commit \w{40}$/m}; -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-ini.js: -------------------------------------------------------------------------------- 1 | Prism.languages.ini= { 2 | 'comment': /^[ \t]*;.*$/m, 3 | 'important': /\[.*?\]/, 4 | 'constant': /^[ \t]*[^\s=]+?(?=[ \t]*=)/m, 5 | 'attr-value': { 6 | pattern: /=.*/, 7 | inside: { 8 | 'punctuation': /^[=]/ 9 | } 10 | } 11 | }; -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-ini.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.ini={comment:/^[ \t]*;.*$/m,important:/\[.*?\]/,constant:/^[ \t]*[^\s=]+?(?=[ \t]*=)/m,"attr-value":{pattern:/=.*/,inside:{punctuation:/^[=]/}}}; -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-matlab.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.matlab={string:/\B'(?:''|[^'\n])*'/,comment:[/%\{[\s\S]*?\}%/,/%.+/],number:/\b-?(?:\d*\.?\d+(?:[eE][+-]?\d+)?(?:[ij])?|[ij])\b/,keyword:/\b(?:break|case|catch|continue|else|elseif|end|for|function|if|inf|NaN|otherwise|parfor|pause|pi|return|switch|try|while)\b/,"function":/(?!\d)\w+(?=\s*\()/,operator:/\.?[*^\/\\']|[+\-:@]|[<>=~]=?|&&?|\|\|?/,punctuation:/\.{3}|[.,;\[\](){}!]/}; -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-php-extras.js: -------------------------------------------------------------------------------- 1 | Prism.languages.insertBefore('php', 'variable', { 2 | 'this': /\$this\b/, 3 | 'global': /\$(?:_(?:SERVER|GET|POST|FILES|REQUEST|SESSION|ENV|COOKIE)|GLOBALS|HTTP_RAW_POST_DATA|argc|argv|php_errormsg|http_response_header)/, 4 | 'scope': { 5 | pattern: /\b[\w\\]+::/, 6 | inside: { 7 | keyword: /(static|self|parent)/, 8 | punctuation: /(::|\\)/ 9 | } 10 | } 11 | }); -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-php-extras.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.insertBefore("php","variable",{"this":/\$this\b/,global:/\$(?:_(?:SERVER|GET|POST|FILES|REQUEST|SESSION|ENV|COOKIE)|GLOBALS|HTTP_RAW_POST_DATA|argc|argv|php_errormsg|http_response_header)/,scope:{pattern:/\b[\w\\]+::/,inside:{keyword:/(static|self|parent)/,punctuation:/(::|\\)/}}}); -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/components/prism-prolog.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.prolog={comment:[/%.+/,/\/\*[\s\S]*?\*\//],string:/(["'])(?:\1\1|\\(?:\r\n|[\s\S])|(?!\1)[^\\\r\n])*\1/,builtin:/\b(?:fx|fy|xf[xy]?|yfx?)\b/,variable:/\b[A-Z_]\w*/,"function":/\b[a-z]\w*(?:(?=\()|\/\d+)/,number:/\b\d+\.?\d*/,operator:/[:\\=><\-?*@\/;+^|!$.]+|\b(?:is|mod|not|xor)\b/,punctuation:/[(){}\[\],]/}; -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/examples/prism-ini.html: -------------------------------------------------------------------------------- 1 |

Ini

2 |

To use this language, use the class "language-ini".

3 | 4 |

Comments

5 |
; This is a comment
6 | 7 |

Section title

8 |
[owner]
 9 | [database]
10 | 11 |

Properties

12 |
name=prism
13 | file="somefile.txt"
-------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/examples/prism-latex.html: -------------------------------------------------------------------------------- 1 |

LaTeX

2 |

To use this language, use the class "language-latex".

3 | 4 |

Comments

5 |
% This is a comment
6 | 7 |

Commands

8 |
\begin{document}
 9 | \documentstyle[twoside,epsfig]{article}
10 | \usepackage{epsfig,multicol}
11 | 12 |

Math mode

13 |
$\alpha$
14 | H$_{2}$O
15 | 45$^{\circ}$C
-------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/examples/prism-rip.html: -------------------------------------------------------------------------------- 1 |

Rip

2 |

To use this language, use the class "language-rip".

3 | 4 |

Comments

5 |
# This is a comment
6 | 7 |

Strings

8 |
"foo \"bar\" baz"
 9 | 'foo \'bar\' baz'
10 | 11 |

Regex

12 |
regular_expression = /abc/
13 | 14 |

Symbols

15 |
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 |

Prism plugins

2 | 3 | Download 4 | 5 |

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 2 | #include "foo.au3" 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["directive", "#include"], 8 | ["url", ""], 9 | ["directive", "#include"], 10 | ["url", "\"foo.au3\""] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for files in includes. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/bash/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/bash/shebang_feature.test: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["shebang", "#!/bin/bash"] 7 | ] 8 | 9 | ---------------------------------------------------- 10 | 11 | Checks for shebang. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/bash/variable_feature.test: -------------------------------------------------------------------------------- 1 | $foo 2 | $@ 3 | ${foo bar} 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["variable", "$foo"], 9 | ["variable", "$@"], 10 | ["variable", "${foo bar}"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for variables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/basic/comment_feature.test: -------------------------------------------------------------------------------- 1 | ! Foobar 2 | REM Foobar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["comment", ["! Foobar"]], 8 | ["comment", [["keyword", "REM"], " Foobar"]] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/basic/number_feature.test: -------------------------------------------------------------------------------- 1 | 42 2 | 3.14159 3 | 2e8 4 | 3.4E-9 5 | 0.7E+12 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["number", "42"], 11 | ["number", "3.14159"], 12 | ["number", "2e8"], 13 | ["number", "3.4E-9"], 14 | ["number", "0.7E+12"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for numbers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/basic/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo""obar" 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["string", "\"\""], 8 | ["string", "\"fo\"\"obar\""] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/batch/comment_feature.test: -------------------------------------------------------------------------------- 1 | :: 2 | :: Foobar 3 | REM Foobar 4 | rem foo^ 5 | bar 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["comment", "::"], 11 | ["comment", ":: Foobar"], 12 | ["comment", "REM Foobar"], 13 | ["comment", "rem foo^\r\nbar"] 14 | ] 15 | 16 | ---------------------------------------------------- 17 | 18 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/batch/label_feature.test: -------------------------------------------------------------------------------- 1 | :foo 2 | :Foo_Bar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["label", ":foo"], 8 | ["label", ":Foo_Bar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for labels. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/bison/number_feature.test: -------------------------------------------------------------------------------- 1 | 42 2 | 0 3 | 0xBadFace 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["number", "42"], 9 | ["number", "0"], 10 | ["number", "0xBadFace"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for numbers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/clike/boolean_feature.test: -------------------------------------------------------------------------------- 1 | true; false; 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["boolean", "true"], ["punctuation", ";"], 7 | ["boolean", "false"], ["punctuation", ";"] 8 | ] 9 | 10 | ---------------------------------------------------- 11 | 12 | Checks for booleans. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/clike/comment_feature.test: -------------------------------------------------------------------------------- 1 | // foobar 2 | /**/ 3 | /* foo 4 | bar */ 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["comment", "// foobar"], 10 | ["comment", "/**/"], 11 | ["comment", "/* foo\r\nbar */"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for single-line and multi-line comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/coffeescript/class-member_feature.test: -------------------------------------------------------------------------------- 1 | @name 2 | @foo_bar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["class-member", "@name"], 8 | ["class-member", "@foo_bar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for class members. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/coffeescript/comment_feature.test: -------------------------------------------------------------------------------- 1 | #foo 2 | # foo bar 3 | ### foo bar 4 | baz ### 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["comment", "#foo"], 10 | ["comment", "# foo bar"], 11 | ["multiline-comment", "### foo bar\r\nbaz ###"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for single-line and multi-line comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/coffeescript/property_feature.test: -------------------------------------------------------------------------------- 1 | foo: 2 | foo_bar : 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["property", "foo"], 8 | ["punctuation", ":"], 9 | ["property", "foo_bar"], 10 | ["punctuation", ":"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for object properties. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/cpp+pure/cpp_inclusion.test: -------------------------------------------------------------------------------- 1 | %< -*- C++ -*- 2 | alignas 3 | %> 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["inline-lang-cpp", [ 9 | ["delimiter", "%< "], 10 | ["lang", "-*- C++ -*-"], 11 | ["keyword", "alignas"], 12 | ["delimiter", "%>"] 13 | ]] 14 | ] 15 | 16 | ---------------------------------------------------- 17 | 18 | Checks for C++ in Pure. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/cpp/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/cpp/class-name_feature.test: -------------------------------------------------------------------------------- 1 | class Foo 2 | class Foo_bar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["keyword", "class"], ["class-name", "Foo"], 8 | ["keyword", "class"], ["class-name", "Foo_bar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for class names. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/csharp/issue806.test: -------------------------------------------------------------------------------- 1 | 0.3f 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["number", "0.3f"] 7 | ] 8 | 9 | ---------------------------------------------------- 10 | 11 | Checks that "f" prefix is properly highlighted as part of the number. 12 | See #806. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/csharp/number_feature.test: -------------------------------------------------------------------------------- 1 | 42 2 | 3.14159 3 | 0xbabe 4 | 0XBABE 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["number", "42"], 10 | ["number", "3.14159"], 11 | ["number", "0xbabe"], 12 | ["number", "0XBABE"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for decimal and hexadecimal numbers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/css!+css-extras/entity_feature.test: -------------------------------------------------------------------------------- 1 | \0022 2 | \20B9 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["entity", "\\0022"], 8 | ["entity", "\\20B9"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for entities. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/css!+css-extras/hexcode_feature.test: -------------------------------------------------------------------------------- 1 | #ff0000 2 | #BADA55 3 | #4dd 4 | #D0C 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["hexcode", "#ff0000"], 10 | ["hexcode", "#BADA55"], 11 | ["hexcode", "#4dd"], 12 | ["hexcode", "#D0C"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for hexadecimal colors. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/css!+css-extras/number_feature.test: -------------------------------------------------------------------------------- 1 | 42 2 | 3.14159 3 | 42% 4 | 3.14% 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["number", "42"], 10 | ["number", "3.14159"], 11 | ["number", "42%"], 12 | ["number", "3.14%"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for numbers. 18 | -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/css/comment_feature.test: -------------------------------------------------------------------------------- 1 | /**/ 2 | /* foo */ 3 | /* foo 4 | bar */ 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["comment", "/**/"], 10 | ["comment", "/* foo */"], 11 | ["comment", "/* foo\r\nbar */"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for empty comment, single-line comment and multi-line comment. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/d/token-string_feature.test: -------------------------------------------------------------------------------- 1 | q{foo} 2 | q{ q{bar} } 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["token-string", "q{foo}"], 8 | ["token-string", "q{ q{bar} }"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for token strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/diff/coord_feature.test: -------------------------------------------------------------------------------- 1 | 7c7 2 | 3 | *** 4,8 **** 4 | --- 4,8 ---- 5 | 6 | @@ -4,5 +4,5 @@ 7 | 8 | ---------------------------------------------------- 9 | 10 | [ 11 | ["coord", "7c7"], 12 | 13 | ["coord", "*** 4,8 ****"], 14 | ["coord", "--- 4,8 ----"], 15 | 16 | ["coord", "@@ -4,5 +4,5 @@"] 17 | ] 18 | 19 | ---------------------------------------------------- 20 | 21 | Checks for coords. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/docker/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/eiffel/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/eiffel/char_feature.test: -------------------------------------------------------------------------------- 1 | 'a' 2 | '%'' 3 | '%/123/' 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["char", "'a'"], 9 | ["char", "'%''"], 10 | ["char", "'%/123/'"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for chars. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/eiffel/comment_feature.test: -------------------------------------------------------------------------------- 1 | -- 2 | -- foo bar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["comment", "--"], 8 | ["comment", "-- foo bar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/elixir/atom_feature.test: -------------------------------------------------------------------------------- 1 | :true 2 | :false 3 | :FooBar42 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["atom", ":true"], 9 | ["atom", ":false"], 10 | ["atom", ":FooBar42"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for atoms. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/elixir/boolean_feature.test: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | nil 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["boolean", "true"], 9 | ["boolean", "false"], 10 | ["boolean", "nil"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for booleans and nil. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/elixir/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/elixir/issue775.test: -------------------------------------------------------------------------------- 1 | @doc """ 2 | ## Parameters 3 | """ 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["attribute", "@doc"], 9 | ["string", [ 10 | "\"\"\"\r\n## Parameters\r\n\"\"\"" 11 | ]] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Ensures that markdown headers are not highlighted as comments inside strings. 17 | See #775 for details. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/erlang/atom_feature.test: -------------------------------------------------------------------------------- 1 | foo 2 | foo@_bar 3 | 'foo bar' 4 | '\'\\' 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["atom", "foo"], 10 | ["atom", "foo@_bar"], 11 | ["quoted-atom", "'foo bar'"], 12 | ["quoted-atom", "'\\'\\\\'"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for atoms and quoted atoms. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/erlang/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/erlang/comment_feature.test: -------------------------------------------------------------------------------- 1 | % foo bar 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["comment", "% foo bar"] 7 | ] 8 | 9 | ---------------------------------------------------- 10 | 11 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/erlang/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/erlang/variable_feature.test: -------------------------------------------------------------------------------- 1 | Foo 2 | ?Bar 3 | _ 4 | Foo@_bar 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["variable", "Foo"], 10 | ["variable", "?Bar"], 11 | ["variable", "_"], 12 | ["variable", "Foo@_bar"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for variables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/fortran/boolean_feature.test: -------------------------------------------------------------------------------- 1 | .TRUE. 2 | .false. 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["boolean", ".TRUE."], 8 | ["boolean", ".false."] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for boolean. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/fortran/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/fsharp/comment_feature.test: -------------------------------------------------------------------------------- 1 | // foobar 2 | (**) 3 | (* foo 4 | bar *) 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["comment", "// foobar"], 10 | ["comment", "(**)"], 11 | ["comment", "(* foo\r\nbar *)"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for single-line and multi-line comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/gherkin/comment_feature.test: -------------------------------------------------------------------------------- 1 | # 2 | # foo bar 3 | # foobar 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["comment", "#"], 9 | ["comment", "# foo bar"], 10 | ["comment", "# foobar"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/gherkin/outline_feature.test: -------------------------------------------------------------------------------- 1 | 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["outline", ""] 7 | ] 8 | 9 | ---------------------------------------------------- 10 | 11 | Checks for single outlines. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/gherkin/pystring_feature.test: -------------------------------------------------------------------------------- 1 | """ 2 | foo 3 | bar 4 | """ 5 | 6 | ''' 7 | foo 8 | bar 9 | ''' 10 | 11 | ---------------------------------------------------- 12 | 13 | [ 14 | ["pystring", "\"\"\"\r\nfoo\r\nbar\r\n\"\"\""], 15 | ["pystring", "'''\r\nfoo\r\nbar\r\n'''"] 16 | ] 17 | 18 | ---------------------------------------------------- 19 | 20 | Checks for pystrings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/gherkin/tag_feature.test: -------------------------------------------------------------------------------- 1 | @important 2 | @billing @bicker @annoy 3 | @foo 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["tag", "@important"], 9 | ["tag", "@billing"], 10 | ["tag", "@bicker"], 11 | ["tag", "@annoy"], 12 | ["tag", "@foo"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for tags. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/git/coord_feature.test: -------------------------------------------------------------------------------- 1 | @@ -1 +1,2 @@ 2 | @@@ -98,20 -98,12 +98,20 @@@ 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["coord", "@@ -1 +1,2 @@"], 8 | ["coord", "@@@ -98,20 -98,12 +98,20 @@@"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for coords. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/git/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "foo" 3 | '' 4 | 'bar' 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["string", "\"\""], 10 | ["string", "\"foo\""], 11 | ["string", "''"], 12 | ["string", "'bar'"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for double-quoted and single-quoted strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/go/boolean_feature.test: -------------------------------------------------------------------------------- 1 | _ 2 | iota 3 | nil 4 | true 5 | false 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["boolean", "_"], 11 | ["boolean", "iota"], 12 | ["boolean", "nil"], 13 | ["boolean", "true"], 14 | ["boolean", "false"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for all boolean values. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/groovy/shebang_feature.test: -------------------------------------------------------------------------------- 1 | #!foobar 2 | #!/usr/bin/env groovy 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["shebang", "#!foobar"], 8 | ["shebang", "#!/usr/bin/env groovy"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Check for shebang comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/haml/doctype_feature.test: -------------------------------------------------------------------------------- 1 | !!! 2 | !!! 5 3 | !!! Strict 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["doctype", "!!!"], 9 | ["doctype", "!!! 5"], 10 | ["doctype", "!!! Strict"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for doctypes. 16 | -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/handlebars+jade/handlebars_inclusion.test: -------------------------------------------------------------------------------- 1 | :handlebars 2 | {{!comment}} 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["filter-handlebars", [ 8 | ["filter-name", ":handlebars"], 9 | ["handlebars-comment", "{{!comment}}"] 10 | ]] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for handlebars filter in Jade. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/haskell/char_feature.test: -------------------------------------------------------------------------------- 1 | 'a' 2 | '\n' 3 | '\23' 4 | '\xFE' 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["char", "'a'"], 10 | ["char", "'\\n'"], 11 | ["char", "'\\23'"], 12 | ["char", "'\\xFE'"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for chars. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/haskell/comment_feature.test: -------------------------------------------------------------------------------- 1 | -- foo 2 | {- foo 3 | bar -} 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["comment", "-- foo"], 9 | ["comment", "{- foo\r\nbar -}"] 10 | ] 11 | 12 | ---------------------------------------------------- 13 | 14 | Checks for single-line and multi-line comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/haskell/constant_feature.test: -------------------------------------------------------------------------------- 1 | Foo 2 | Foo.Bar 3 | Baz.Foobar_42 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["constant", "Foo"], 9 | ["constant", "Foo.Bar"], 10 | ["constant", "Baz.Foobar_42"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for constants. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/haskell/hvariable_feature.test: -------------------------------------------------------------------------------- 1 | foo 2 | Foo.bar 3 | Baz.foobar_42 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["hvariable", "foo"], 9 | ["hvariable", "Foo.bar"], 10 | ["hvariable", "Baz.foobar_42"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for hvariables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/haskell/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"o" 3 | "foo \ 4 | \ bar" 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["string", "\"\""], 10 | ["string", "\"fo\\\"o\""], 11 | ["string", "\"foo \\\r\n \\ bar\""] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/haxe/preprocessor_feature.test: -------------------------------------------------------------------------------- 1 | #if 2 | #elseif 3 | #else 4 | #end 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["preprocessor", "#if"], 10 | ["preprocessor", "#elseif"], 11 | ["preprocessor", "#else"], 12 | ["preprocessor", "#end"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for preprocessor directives. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/haxe/regex_feature.test: -------------------------------------------------------------------------------- 1 | ~/ha\/xe/i 2 | ~/[A-Z0-9._%-]+@[A-Z0-9.-]+.[A-Z][A-Z][A-Z]?/i 3 | ~/(dog|fox)/igmsu 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["regex", "~/ha\\/xe/i"], 9 | ["regex", "~/[A-Z0-9._%-]+@[A-Z0-9.-]+.[A-Z][A-Z][A-Z]?/i"], 10 | ["regex", "~/(dog|fox)/igmsu"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for regexes. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/haxe/reification_feature.test: -------------------------------------------------------------------------------- 1 | $e 2 | ${4+2} 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["reification", "$e"], 8 | ["reification", "$"], 9 | ["punctuation", "{"], 10 | ["number", "4"], ["operator", "+"], ["number", "2"], 11 | ["punctuation", "}"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for reification. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/icon/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/inform7/comment_feature.test: -------------------------------------------------------------------------------- 1 | [Foobar] 2 | [Foo 3 | bar 4 | baz] 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["comment", "[Foobar]"], 10 | ["comment", "[Foo\r\nbar\r\nbaz]"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/ini/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/ini/important_feature.test: -------------------------------------------------------------------------------- 1 | [owner] 2 | [foobar] 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["important", "[owner]"], 8 | ["important", "[foobar]"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for section titles. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/j/comment_feature.test: -------------------------------------------------------------------------------- 1 | NB. 2 | NB. Foo bar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["comment", "NB."], 8 | ["comment", "NB. Foo bar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/j/string_feature.test: -------------------------------------------------------------------------------- 1 | '' 2 | 'fo''obar' 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["string", "''"], 8 | ["string", "'fo''obar'"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/jade/plain-text_feature.test: -------------------------------------------------------------------------------- 1 | div foo 2 | span foo bar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["tag", [ 8 | "div" 9 | ]], 10 | ["plain-text", "foo"], 11 | ["tag", [ 12 | "span" 13 | ]], 14 | ["plain-text", "foo bar"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for single-line plain text. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/javascript/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/javascript/regex_feature.test: -------------------------------------------------------------------------------- 1 | /foo bar/ 2 | /foo/gimyu, 3 | /[\[\]]{2,4}(?:foo)*/; 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["regex", "/foo bar/"], 9 | ["regex", "/foo/gimyu"], ["punctuation", ","], 10 | ["regex", "/[\\[\\]]{2,4}(?:foo)*/"], ["punctuation", ";"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for regex. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/julia/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/julia/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/keyman/comment_feature.test: -------------------------------------------------------------------------------- 1 | c Foo 2 | c Foobar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["comment", "c Foo"], 8 | ["comment", "c Foobar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/keyman/operator_feature.test: -------------------------------------------------------------------------------- 1 | + > 2 | \ , 3 | ( ) 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["operator", "+"], ["operator", ">"], 9 | ["operator", "\\"], ["operator", ","], 10 | ["operator", "("], ["operator", ")"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for all operators. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/keyman/string_feature.test: -------------------------------------------------------------------------------- 1 | '' 2 | "" 3 | 'foo' 4 | "bar" 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["string", "''"], 10 | ["string", "\"\""], 11 | ["string", "'foo'"], 12 | ["string", "\"bar\""] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for single-quoted and double-quoted strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/keyman/tag_feature.test: -------------------------------------------------------------------------------- 1 | $keyman: 2 | $kmfl: 3 | $weaver: 4 | $keymanweb: 5 | $keymanonly: 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["tag", "$keyman:"], 11 | ["tag", "$kmfl:"], 12 | ["tag", "$weaver:"], 13 | ["tag", "$keymanweb:"], 14 | ["tag", "$keymanonly:"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for all prefixes. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/kotlin/label_feature.test: -------------------------------------------------------------------------------- 1 | loop@ 2 | break@loop 3 | return@forEach 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["label", "loop@"], 9 | ["keyword", "break"], ["label", "@loop"], 10 | ["keyword", "return"], ["label", "@forEach"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for labels. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/latex/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/latex/url_feature.test: -------------------------------------------------------------------------------- 1 | \url{http://prismjs.com} 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["function", "\\url"], ["punctuation", "{"], 7 | ["url", "http://prismjs.com"], ["punctuation", "}"] 8 | ] 9 | 10 | ---------------------------------------------------- 11 | 12 | Checks for URLs. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/less/comment_feature.test: -------------------------------------------------------------------------------- 1 | // 2 | // foobar 3 | /**/ 4 | /* foo 5 | bar */ 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["comment", "//"], 11 | ["comment", "// foobar"], 12 | ["comment", "/**/"], 13 | ["comment", "/* foo\r\nbar */"] 14 | ] 15 | 16 | ---------------------------------------------------- 17 | 18 | Checks for single-line and multi-line comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/less/operator_feature.test: -------------------------------------------------------------------------------- 1 | + - * / 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["operator", "+"], 7 | ["operator", "-"], 8 | ["operator", "*"], 9 | ["operator", "/"] 10 | ] 11 | 12 | ---------------------------------------------------- 13 | 14 | Checks for operators. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/lolcode/boolean_feature.test: -------------------------------------------------------------------------------- 1 | WIN 2 | FAIL 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["boolean", "WIN"], 8 | ["boolean", "FAIL"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for booleans. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/lolcode/comment_feature.test: -------------------------------------------------------------------------------- 1 | OBTW foo 2 | bar TLDR 3 | BTW foobar 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["comment", "OBTW foo\r\nbar TLDR"], 9 | ["comment", "BTW foobar"] 10 | ] 11 | 12 | ---------------------------------------------------- 13 | 14 | Checks for single-line and multi-line comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/lolcode/label_feature.test: -------------------------------------------------------------------------------- 1 | IM IN YR foobar 2 | IM OUTTA YR fooBAR 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["keyword", "IM IN YR"], 8 | ["label", "foobar"], 9 | ["keyword", "IM OUTTA YR"], 10 | ["label", "fooBAR"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for labels. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/lolcode/number_feature.test: -------------------------------------------------------------------------------- 1 | 42 2 | 3.14159 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["number", "42"], 8 | ["number", "3.14159"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for numbers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/lolcode/variable_feature.test: -------------------------------------------------------------------------------- 1 | IT 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["variable", "IT"] 7 | ] 8 | 9 | ---------------------------------------------------- 10 | 11 | Checks for variables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/makefile/comment_feature.test: -------------------------------------------------------------------------------- 1 | # 2 | # foobar 3 | # foo \ 4 | bar 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["comment", "#"], 10 | ["comment", "# foobar"], 11 | ["comment", "# foo \\\r\nbar"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/makefile/operator_feature.test: -------------------------------------------------------------------------------- 1 | = ::= ?= 2 | := += != 3 | | @ 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["operator", "="], ["operator", "::="], ["operator", "?="], 9 | ["operator", ":="], ["operator", "+="], ["operator", "!="], 10 | ["operator", "|"], ["operator", "@"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for operators. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/markdown+jade/markdown_inclusion.test: -------------------------------------------------------------------------------- 1 | :markdown 2 | # title 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["filter-markdown", [ 8 | ["filter-name", ":markdown"], 9 | ["title", [ 10 | ["punctuation", "#"], 11 | " title" 12 | ]] 13 | ]] 14 | ] 15 | 16 | ---------------------------------------------------- 17 | 18 | Checks for markdown filter in Jade. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/markdown/blockquote_feature.test: -------------------------------------------------------------------------------- 1 | > foo 2 | >> foo 3 | > > foo 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["blockquote", ">"], " foo\r\n", 9 | ["blockquote", ">>"], " foo\r\n", 10 | ["blockquote", "> >"], " foo" 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for blockquotes. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/markdown/hr_feature.test: -------------------------------------------------------------------------------- 1 | *** 2 | --- 3 | * * * 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["hr", "***"], 9 | ["hr", "---"], 10 | ["hr", "* * *"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for hr. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/markup+haml/markup_feature.test: -------------------------------------------------------------------------------- 1 |
2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["markup", [["tag", [["tag", [["punctuation", "<"], "div"]], ["punctuation", ">"]]]]] 7 | ] 8 | 9 | ---------------------------------------------------- 10 | 11 | Checks for embedded markup. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/markup/cdata_feature.test: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["cdata", ""], 10 | ["cdata", ""] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for CDATA sections, single-line and multi-line. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/markup/entity_feature.test: -------------------------------------------------------------------------------- 1 | & ϑ ⛵   2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["entity", "&"], 7 | ["entity", "ϑ"], 8 | ["entity", "⛵"], 9 | ["entity", " "] 10 | ] 11 | 12 | ---------------------------------------------------- 13 | 14 | Checks for HTML/XML character entity references. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/matlab/comment_feature.test: -------------------------------------------------------------------------------- 1 | % foobar 2 | %{}% 3 | %{ foo 4 | bar }% 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["comment", "% foobar"], 10 | ["comment", "%{}%"], 11 | ["comment", "%{ foo\r\nbar }%"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for single-line and multi-line comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/matlab/function_feature.test: -------------------------------------------------------------------------------- 1 | foo() 2 | foo_42() 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["function", "foo"], ["punctuation", "("], ["punctuation", ")"], 8 | ["function", "foo_42"], ["punctuation", "("], ["punctuation", ")"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for functions. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/matlab/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/mel/code_feature.test: -------------------------------------------------------------------------------- 1 | `ls -selection` 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["code", [ 7 | ["delimiter", "`"], 8 | ["function", "ls"], 9 | ["flag", "-selection"], 10 | ["delimiter", "`"] 11 | ]] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for code. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/mel/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/mel/flag_feature.test: -------------------------------------------------------------------------------- 1 | -d 2 | -foo 3 | -foo42 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["flag", "-d"], 9 | ["flag", "-foo"], 10 | ["flag", "-foo42"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for flags. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/mel/number_feature.test: -------------------------------------------------------------------------------- 1 | 0xBadFace 2 | 42 3 | 3.14159 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["number", "0xBadFace"], 9 | ["number", "42"], 10 | ["number", "3.14159"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for numbers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/mel/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"obar" 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["string", "\"\""], 8 | ["string", "\"fo\\\"obar\""] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/mel/variable_feature.test: -------------------------------------------------------------------------------- 1 | $x 2 | $foo42 3 | $Foo_Bar_42 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["variable", "$x"], 9 | ["variable", "$foo42"], 10 | ["variable", "$Foo_Bar_42"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for variables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/mizar/comment_feature.test: -------------------------------------------------------------------------------- 1 | :: Foobar 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["comment", ":: Foobar"] 7 | ] 8 | 9 | ---------------------------------------------------- 10 | 11 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/mizar/number_feature.test: -------------------------------------------------------------------------------- 1 | 0 2 | -2 3 | 42 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["number", "0"], 9 | ["number", "-2"], 10 | ["number", "42"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for numbers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/mizar/operator_feature.test: -------------------------------------------------------------------------------- 1 | ... 2 | -> 3 | & 4 | = .= 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["operator", "..."], 10 | ["operator", "->"], 11 | ["operator", "&"], 12 | ["operator", "="], ["operator", ".="] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for operators. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/monkey/comment_feature.test: -------------------------------------------------------------------------------- 1 | ' Foobar 2 | #Rem Foo 3 | Bar 'Baz 4 | #End 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["comment", "' Foobar"], 10 | ["comment", "#Rem Foo\r\nBar 'Baz\r\n#End"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/monkey/function_feature.test: -------------------------------------------------------------------------------- 1 | foobar() 2 | Foo_Bar_42() 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["function", "foobar"], ["punctuation", "("], ["punctuation", ")"], 8 | ["function", "Foo_Bar_42"], ["punctuation", "("], ["punctuation", ")"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for functions. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/monkey/number_feature.test: -------------------------------------------------------------------------------- 1 | 0 2 | 42 3 | 3.14159 4 | .5 5 | $BadFace 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["number", "0"], 11 | ["number", "42"], 12 | ["number", "3.14159"], 13 | ["number", ".5"], 14 | ["number", "$BadFace"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for numbers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/monkey/preprocessor_feature.test: -------------------------------------------------------------------------------- 1 | #If HOST 2 | #ElseIf 3 | #Else 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["preprocessor", "#If HOST"], 9 | ["preprocessor", "#ElseIf"], 10 | ["preprocessor", "#Else"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for preprocessor directives. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/monkey/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "Foo ~qBar~q" 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["string", "\"\""], 8 | ["string", "\"Foo ~qBar~q\""] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/monkey/type-char_feature.test: -------------------------------------------------------------------------------- 1 | foo? 2 | bar% 3 | baz# 4 | foobar$ 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | "foo", ["type-char", "?"], 10 | "\r\nbar", ["type-char", "%"], 11 | "\r\nbaz", ["type-char", "#"], 12 | "\r\nfoobar", ["type-char", "$"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for type chars. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/nasm/comment_feature.test: -------------------------------------------------------------------------------- 1 | ; 2 | ; foo 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["comment", ";"], 8 | ["comment", "; foo"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/nasm/label_feature.test: -------------------------------------------------------------------------------- 1 | foo42: 2 | .foo: 3 | ..@foo: 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["label", "foo42:"], 9 | ["label", ".foo:"], 10 | ["label", "..@foo:"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for labels. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/nginx/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/nginx/variable_feature.test: -------------------------------------------------------------------------------- 1 | $foobar 2 | $foo_bar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["variable", "$foobar"], 8 | ["variable", "$foo_bar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for variables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/nim/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/nix/antiquotation_feature.test: -------------------------------------------------------------------------------- 1 | ${42} 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["antiquotation", "$"], 7 | ["punctuation", "{"], 8 | ["number", "42"], 9 | ["punctuation", "}"] 10 | ] 11 | 12 | ---------------------------------------------------- 13 | 14 | Checks for antiquotations outside of strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/nix/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/nix/comment_feature.test: -------------------------------------------------------------------------------- 1 | # 2 | # foobar 3 | /**/ 4 | /* foo 5 | bar */ 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["comment", "#"], 11 | ["comment", "# foobar"], 12 | ["comment", "/**/"], 13 | ["comment", "/* foo\r\nbar */"] 14 | ] 15 | 16 | ---------------------------------------------------- 17 | 18 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/nix/number_feature.test: -------------------------------------------------------------------------------- 1 | 0 2 | 42 3 | 120457 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["number", "0"], 9 | ["number", "42"], 10 | ["number", "120457"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for integers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/nsis/comment_feature.test: -------------------------------------------------------------------------------- 1 | /* foo */ 2 | /* foo 3 | bar */ 4 | # foo 5 | ; bar 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["comment", "/* foo */"], 11 | ["comment", "/* foo\r\nbar */"], 12 | ["comment", "# foo"], 13 | ["comment", "; bar"] 14 | ] 15 | 16 | ---------------------------------------------------- 17 | 18 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/nsis/number_feature.test: -------------------------------------------------------------------------------- 1 | 0xBadFace 2 | 42 3 | 3.14159 4 | 3.2e4 5 | 1.0e-5 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["number", "0xBadFace"], 11 | ["number", "42"], 12 | ["number", "3.14159"], 13 | ["number", "3.2e4"], 14 | ["number", "1.0e-5"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for hexadecimal and decimal numbers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/nsis/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"o" 3 | '' 4 | 'fo\'o' 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["string", "\"\""], 10 | ["string", "\"fo\\\"o\""], 11 | ["string", "''"], 12 | ["string", "'fo\\'o'"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for single-quoted and double-quoted strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/nsis/variable_feature.test: -------------------------------------------------------------------------------- 1 | $LANGUAGE 2 | $(myLicenseData) 3 | ${LANG_ENGLISH} 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["variable", "$LANGUAGE"], 9 | ["variable", "$(myLicenseData)"], 10 | ["variable", "${LANG_ENGLISH}"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for variables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/ocaml/boolean_feature.test: -------------------------------------------------------------------------------- 1 | false 2 | true 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["boolean", "false"], 8 | ["boolean", "true"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for booleans. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/ocaml/comment_feature.test: -------------------------------------------------------------------------------- 1 | (**) 2 | (* foo 3 | bar *) 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["comment", "(**)"], 9 | ["comment", "(* foo\r\nbar *)"] 10 | ] 11 | 12 | ---------------------------------------------------- 13 | 14 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/ocaml/directive_feature.test: -------------------------------------------------------------------------------- 1 | #quit 2 | #load 3 | #load_rec 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["directive", "#quit"], 9 | ["directive", "#load"], 10 | ["directive", "#load_rec"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for directives. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/ocaml/type_feature.test: -------------------------------------------------------------------------------- 1 | 'Foo 2 | 'bar_42 3 | `Foo 4 | `bar_42 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["type", "'Foo"], 10 | ["type", "'bar_42"], 11 | ["type", "`Foo"], 12 | ["type", "`bar_42"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for types. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/oz/atom_feature.test: -------------------------------------------------------------------------------- 1 | '' 2 | 'fo\'obar' 3 | 'foo 4 | bar' 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["atom", "''"], 10 | ["atom", "'fo\\'obar'"], 11 | ["atom", "'foo\r\nbar'"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for atoms. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/oz/comment_feature.test: -------------------------------------------------------------------------------- 1 | % 2 | % Foobar 3 | /**/ 4 | /* Foo 5 | bar */ 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["comment", "%"], 11 | ["comment", "% Foobar"], 12 | ["comment", "/**/"], 13 | ["comment", "/* Foo\r\nbar */"] 14 | ] 15 | 16 | ---------------------------------------------------- 17 | 18 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/oz/function_feature.test: -------------------------------------------------------------------------------- 1 | foobar() 2 | {Foobar} 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["function", "foobar"], ["punctuation", "("], ["punctuation", ")"], 8 | ["punctuation", "{"], ["function", "Foobar"], ["punctuation", "}"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for functions and procedures. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/oz/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "Fo\"obar" 3 | "Foo 4 | bar" 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["string", "\"\""], 10 | ["string", "\"Fo\\\"obar\""], 11 | ["string", "\"Foo\r\nbar\""] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/oz/variable_feature.test: -------------------------------------------------------------------------------- 1 | A 2 | Foobar 3 | Foo42 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["variable", "A"], 9 | ["variable", "Foobar"], 10 | ["variable", "Foo42"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for variables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/parigp/comment_feature.test: -------------------------------------------------------------------------------- 1 | /**/ 2 | /* foo 3 | bar */ 4 | \\ 5 | \\ foobar 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["comment", "/**/"], 11 | ["comment", "/* foo\r\nbar */"], 12 | ["comment", "\\\\"], 13 | ["comment", "\\\\ foobar"] 14 | ] 15 | 16 | ---------------------------------------------------- 17 | 18 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/parigp/function_feature.test: -------------------------------------------------------------------------------- 1 | foo() 2 | f o o b a r ( ) 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["function", "foo"], ["punctuation", "("], ["punctuation", ")"], 8 | ["function", "f o o b a r"], ["punctuation", "("], ["punctuation", ")"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for functions. Also checks that whitespaces are ignored. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/parigp/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"obar" 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["string", "\"\""], 8 | ["string", "\"fo\\\"obar\""] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/perl/comment_feature.test: -------------------------------------------------------------------------------- 1 | =label foo 2 | bar 3 | =cut 4 | # 5 | # foobar 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["comment", "=label foo\r\nbar\r\n=cut"], 11 | ["comment", "#"], 12 | ["comment", "# foobar"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/perl/filehandle_feature.test: -------------------------------------------------------------------------------- 1 | _ 2 | <> 3 | 4 | 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["filehandle", "_"], 10 | ["filehandle", "<>"], 11 | ["filehandle", ""], 12 | ["filehandle", ""] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for file handles. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/perl/function_feature.test: -------------------------------------------------------------------------------- 1 | sub foo 2 | sub Foo_Bar42 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["function", [["keyword", "sub"], " foo"]], 8 | ["function", [["keyword", "sub"], " Foo_Bar42"]] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for functions. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/perl/vstring_feature.test: -------------------------------------------------------------------------------- 1 | v1.2 2 | 1.2.3 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["vstring", "v1.2"], 8 | ["vstring", "1.2.3"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for vstrings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/php!+php-extras/this_feature.test: -------------------------------------------------------------------------------- 1 | $this 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["this", "$this"] 7 | ] 8 | 9 | ---------------------------------------------------- 10 | 11 | Checks for $this. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/php/comment_feature.test: -------------------------------------------------------------------------------- 1 | // 2 | // foobar 3 | /**/ 4 | /* foo 5 | bar */ 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["comment", "//"], 11 | ["comment", "// foobar"], 12 | ["comment", "/**/"], 13 | ["comment", "/* foo\r\nbar */"] 14 | ] 15 | 16 | ---------------------------------------------------- 17 | 18 | Checks for single-line and multi-line comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/php/constant_feature.test: -------------------------------------------------------------------------------- 1 | AZ 2 | PRISM 3 | FOOBAR_42 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["constant", "AZ"], 9 | ["constant", "PRISM"], 10 | ["constant", "FOOBAR_42"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for constants. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/php/delimiter_feature.test: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["delimiter", ""], 9 | ["delimiter", ""] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for delimiters. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/php/shell-comment_feature.test: -------------------------------------------------------------------------------- 1 | # 2 | # foobar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["shell-comment", "#"], 8 | ["shell-comment", "# foobar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for shell-like comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/php/variable_feature.test: -------------------------------------------------------------------------------- 1 | $f 2 | $foo 3 | $foobar_42 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["variable", "$f"], 9 | ["variable", "$foo"], 10 | ["variable", "$foobar_42"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for variables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/powershell/variable_feature.test: -------------------------------------------------------------------------------- 1 | $foo $bar_baz $var4u $1 $true_as $falsey 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["variable", "$foo"], 7 | ["variable", "$bar_baz"], 8 | ["variable", "$var4u"], 9 | ["variable", "$1"], 10 | ["variable", "$true_as"], 11 | ["variable", "$falsey"] 12 | ] 13 | ---------------------------------------------------- 14 | 15 | Testing variables -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/processing/constant_feature.test: -------------------------------------------------------------------------------- 1 | FOOBAR 2 | FOO_BAR_42 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["constant", "FOOBAR"], 8 | ["constant", "FOO_BAR_42"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for constants. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/processing/function_feature.test: -------------------------------------------------------------------------------- 1 | foo( 2 | foo_bar_42 ( 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["function", "foo"], ["punctuation", "("], 8 | ["function", "foo_bar_42"], ["punctuation", "("] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for functions. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/prolog/builtin_feature.test: -------------------------------------------------------------------------------- 1 | fx 2 | fy 3 | xf xfx xfy 4 | yf yfx 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["builtin", "fx"], 10 | ["builtin", "fy"], 11 | ["builtin", "xf"], ["builtin", "xfx"], ["builtin", "xfy"], 12 | ["builtin", "yf"], ["builtin", "yfx"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for builtins. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/prolog/comment_feature.test: -------------------------------------------------------------------------------- 1 | % Foobar 2 | /**/ 3 | /* Foo 4 | bar */ 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["comment", "% Foobar"], 10 | ["comment", "/**/"], 11 | ["comment", "/* Foo\r\nbar */"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/prolog/number_feature.test: -------------------------------------------------------------------------------- 1 | 42 2 | 3.14159 3 | 0 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["number", "42"], 9 | ["number", "3.14159"], 10 | ["number", "0"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for numbers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/prolog/variable_feature.test: -------------------------------------------------------------------------------- 1 | Foobar 2 | Foo_bar_42 3 | _foo 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["variable", "Foobar"], 9 | ["variable", "Foo_bar_42"], 10 | ["variable", "_foo"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for variables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/puppet/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/puppet/comment_feature.test: -------------------------------------------------------------------------------- 1 | # 2 | # Foobar 3 | /* Foo 4 | bar */ 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["comment", "#"], 10 | ["comment", "# Foobar"], 11 | ["multiline-comment", "/* Foo\r\nbar */"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/pure/special_feature.test: -------------------------------------------------------------------------------- 1 | __show__ 2 | __cmd__ 3 | __with__ 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["special", "__show__"], 9 | ["special", "__cmd__"], 10 | ["special", "__with__"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for special functions. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/pure/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"obar" 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["string", "\"\""], 8 | ["string", "\"fo\\\"obar\""] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/python/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/python/class-name_feature.test: -------------------------------------------------------------------------------- 1 | class Foo 2 | class foobar_42 3 | class _ 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["keyword", "class"], ["class-name", "Foo"], 9 | ["keyword", "class"], ["class-name", "foobar_42"], 10 | ["keyword", "class"], ["class-name", "_"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for class names. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/python/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/python/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"obar" 3 | '' 4 | 'fo\'obar' 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["string", "\"\""], 10 | ["string", "\"fo\\\"obar\""], 11 | ["string", "''"], 12 | ["string", "'fo\\'obar'"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/q/adverb_feature.test: -------------------------------------------------------------------------------- 1 | ' ': 2 | +/ +/: 3 | \ \: 4 | each 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["adverb", "'"], ["adverb", "':"], 10 | ["verb", "+"], ["adverb", "/"], ["verb", "+"], ["adverb", "/:"], 11 | ["adverb", "\\"], ["adverb", "\\:"], 12 | ["adverb", "each"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for adverbs. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/q/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "Fo\"obar" 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["string", "\"\""], 8 | ["string", "\"Fo\\\"obar\""] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/q/symbol_feature.test: -------------------------------------------------------------------------------- 1 | ` 2 | `foobar 3 | `:www.example.com:8888 4 | `.foo 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["symbol", "`"], 10 | ["symbol", "`foobar"], 11 | ["symbol", "`:www.example.com:8888"], 12 | ["symbol", "`.foo"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for symbols. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/qore/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/qore/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"o 3 | bar" 4 | '' 5 | 'fo\'o 6 | bar' 7 | 8 | ---------------------------------------------------- 9 | 10 | [ 11 | ["string", "\"\""], 12 | ["string", "\"fo\\\"o\r\nbar\""], 13 | ["string", "''"], 14 | ["string", "'fo\\'o\r\nbar'"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/qore/variable_feature.test: -------------------------------------------------------------------------------- 1 | $foobar 2 | $foo_bar_42 3 | $Foobar 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["variable", "$foobar"], 9 | ["variable", "$foo_bar_42"], 10 | ["variable", "$Foobar"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for variables. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/r/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/r/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/r/ellipsis_feature.test: -------------------------------------------------------------------------------- 1 | ... 2 | ..1 3 | ..42 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["ellipsis", "..."], 9 | ["ellipsis", "..1"], 10 | ["ellipsis", "..42"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for ellipsis and special identifiers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/r/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"obar" 3 | '' 4 | 'fo\'obar' 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["string", "\"\""], 10 | ["string", "\"fo\\\"obar\""], 11 | ["string", "''"], 12 | ["string", "'fo\\'obar'"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for single-quoted and double-quoted strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/rip/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/rip/builtin_feature.test: -------------------------------------------------------------------------------- 1 | @ 2 | System 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["builtin", "@"], 8 | ["builtin", "System"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for builtins. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/rip/character_feature.test: -------------------------------------------------------------------------------- 1 | `a 2 | `b 3 | `Z 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["character", "`a"], 8 | ["character", "`b"], 9 | ["character", "`Z"] 10 | ] 11 | 12 | ---------------------------------------------------- 13 | 14 | Checks for characters. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/rip/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/rip/reference_feature.test: -------------------------------------------------------------------------------- 1 | foo 2 | foo_bar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["reference", "foo"], 8 | ["reference", "foo_bar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for reference. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/rip/regex_feature.test: -------------------------------------------------------------------------------- 1 | /foobar/ 2 | /fo[o](?=bar)/ 3 | /\/\\\[\]/ 4 | /(fo|o?)+b*ar?/ 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["regex", "/foobar/"], 10 | ["regex", "/fo[o](?=bar)/"], 11 | ["regex", "/\\/\\\\\\[\\]/"], 12 | ["regex", "/(fo|o?)+b*ar?/"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for regexes. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/rip/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"obar" 3 | '' 4 | 'fo\'obar' 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["string", "\"\""], 10 | ["string", "\"fo\\\"obar\""], 11 | ["string", "''"], 12 | ["string", "'fo\\'obar'"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for single-quoted and double-quoted strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/rip/symbol_feature.test: -------------------------------------------------------------------------------- 1 | :foo 2 | :foobar42 3 | :foo_bar 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["symbol", ":foo"], 9 | ["symbol", ":foobar42"], 10 | ["symbol", ":foo_bar"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for symbols. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/roboconf/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/roboconf/optional_feature.test: -------------------------------------------------------------------------------- 1 | (optional) 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["optional", "(optional)"] 7 | ] 8 | 9 | ---------------------------------------------------- 10 | 11 | Checks for optional flag. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/roboconf/wildcard_feature.test: -------------------------------------------------------------------------------- 1 | load-balance-able.* 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | "load-balance-able", ["punctuation", "."], 7 | ["wildcard", "*"] 8 | ] 9 | 10 | ---------------------------------------------------- 11 | 12 | Checks for wildcards. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/ruby/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/ruby/symbol_feature.test: -------------------------------------------------------------------------------- 1 | :_ 2 | :foo 3 | :BAR? 4 | :Baz_42! 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["symbol", ":_"], 10 | ["symbol", ":foo"], 11 | ["symbol", ":BAR?"], 12 | ["symbol", ":Baz_42!"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for symbols. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/rust/attribute_feature.test: -------------------------------------------------------------------------------- 1 | #[test] 2 | #![warn(unstable)] 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["attribute", "#[test]"], 8 | ["attribute", "#![warn(unstable)]"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for attributes. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/rust/comment_feature.test: -------------------------------------------------------------------------------- 1 | // 2 | // foobar 3 | /**/ 4 | /* foo 5 | bar */ 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["comment", "//"], 11 | ["comment", "// foobar"], 12 | ["comment", "/**/"], 13 | ["comment", "/* foo\r\nbar */"] 14 | ] 15 | 16 | ---------------------------------------------------- 17 | 18 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/rust/macro-rules_feature.test: -------------------------------------------------------------------------------- 1 | foo! 2 | foo_bar! 3 | foo_bar_42! 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["macro-rules", "foo!"], 9 | ["macro-rules", "foo_bar!"], 10 | ["macro-rules", "foo_bar_42!"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for macro rules. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/sas/comment_feature.test: -------------------------------------------------------------------------------- 1 | * foobar; 2 | foo; * foobar; 3 | /* foo 4 | bar */ 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["comment", "* foobar;"], 10 | "\r\nfoo", ["punctuation", ";"], 11 | ["comment", "* foobar;"], 12 | ["comment", "/* foo\r\nbar */"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/sas/datetime_feature.test: -------------------------------------------------------------------------------- 1 | '1jan2013'd 2 | '9:25:19pm't 3 | '18jan2003:9:27:05am'dt 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["datetime", "'1jan2013'd"], 9 | ["datetime", "'9:25:19pm't"], 10 | ["datetime", "'18jan2003:9:27:05am'dt"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for date, times and datetimes. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/scala/symbol_feature.test: -------------------------------------------------------------------------------- 1 | 'foo 2 | 'foo_42 3 | 'foo_bar 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["symbol", "'foo"], 9 | ["symbol", "'foo_42"], 10 | ["symbol", "'foo_bar"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for symbols. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/scheme/boolean_feature.test: -------------------------------------------------------------------------------- 1 | #t 2 | #f 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["boolean", "#t"], 8 | ["boolean", "#f"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for booleans. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/scheme/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/scheme/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"obar" 3 | 'turkey 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["string", "\"\""], 9 | ["string", "\"fo\\\"obar\""], 10 | ["string", "'turkey"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for strings and symbols. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/scss+jade/scss_inclusion.test: -------------------------------------------------------------------------------- 1 | :sass 2 | @extend .foo; 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["filter-sass", [ 8 | ["filter-name", ":sass"], 9 | ["keyword", "@extend"], 10 | " .foo", 11 | ["punctuation", ";"] 12 | ]] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for sass filter (Scss) in Jade. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/scss/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/scss/comment_feature.test: -------------------------------------------------------------------------------- 1 | // 2 | // foobar 3 | /**/ 4 | /* foo 5 | bar */ 6 | 7 | 8 | ---------------------------------------------------- 9 | 10 | [ 11 | ["comment", "//"], 12 | ["comment", "// foobar"], 13 | ["comment", "/**/"], 14 | ["comment", "/* foo\r\nbar */"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/scss/null_feature.test: -------------------------------------------------------------------------------- 1 | null 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["null", "null"] 7 | ] 8 | 9 | ---------------------------------------------------- 10 | 11 | Checks for null. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/scss/placeholder_feature.test: -------------------------------------------------------------------------------- 1 | %foobar 2 | %foo-bar 3 | %foo_bar 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["placeholder", "%foobar"], 9 | ["placeholder", "%foo-bar"], 10 | ["placeholder", "%foo_bar"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for placeholders. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/smalltalk/character_feature.test: -------------------------------------------------------------------------------- 1 | $a 2 | $4 3 | $. 4 | $^ 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["character", "$a"], 10 | ["character", "$4"], 11 | ["character", "$."], 12 | ["character", "$^"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for characters. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/smalltalk/comment_feature.test: -------------------------------------------------------------------------------- 1 | "foobar" 2 | "foo""bar 3 | baz" 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["comment", "\"foobar\""], 9 | ["comment", "\"foo\"\"bar\r\nbaz\""] 10 | ] 11 | 12 | ---------------------------------------------------- 13 | 14 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/smalltalk/keyword_feature.test: -------------------------------------------------------------------------------- 1 | nil true false 2 | self super new 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["keyword", "nil"], ["keyword", "true"], ["keyword", "false"], 8 | ["keyword", "self"], ["keyword", "super"], ["keyword", "new"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for keywords. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/smalltalk/string_feature.test: -------------------------------------------------------------------------------- 1 | 'foobar' 2 | 'foo''bar 3 | baz' 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["string", "'foobar'"], 9 | ["string", "'foo''bar\r\nbaz'"] 10 | ] 11 | 12 | ---------------------------------------------------- 13 | 14 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/smarty/smarty-comment_feature.test: -------------------------------------------------------------------------------- 1 | {**} 2 | {* foo 3 | bar *} 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["smarty-comment", "{**}"], 9 | ["smarty-comment", "{* foo\r\nbar *}"] 10 | ] 11 | 12 | ---------------------------------------------------- 13 | 14 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/sql/boolean_feature.test: -------------------------------------------------------------------------------- 1 | TRUE 2 | FALSE 3 | NULL 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["boolean", "TRUE"], 9 | ["boolean", "FALSE"], 10 | ["boolean", "NULL"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for booleans. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/stylus/comment_feature.test: -------------------------------------------------------------------------------- 1 | /**/ 2 | /* foo 3 | bar */ 4 | // 5 | // foobar 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["comment", "/**/"], 11 | ["comment", "/* foo\r\nbar */"], 12 | ["comment", "//"], 13 | ["comment", "// foobar"] 14 | ] 15 | 16 | ---------------------------------------------------- 17 | 18 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/swift/constant_feature.test: -------------------------------------------------------------------------------- 1 | nil 2 | AB 3 | FOO_BAR 4 | kAb 5 | kFoo_bar 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["constant", "nil"], 11 | ["constant", "AB"], 12 | ["constant", "FOO_BAR"], 13 | ["constant", "kAb"], 14 | ["constant", "kFoo_bar"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for constants. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/tcl/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/tcl/function_feature.test: -------------------------------------------------------------------------------- 1 | proc foo 2 | proc Foobar 3 | proc foo_bar_42 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["builtin", "proc"], ["function", "foo"], 9 | ["builtin", "proc"], ["function", "Foobar"], 10 | ["builtin", "proc"], ["function", "foo_bar_42"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for functions. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/tcl/scope_feature.test: -------------------------------------------------------------------------------- 1 | global 2 | upvar 3 | variable 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["scope", "global"], 9 | ["scope", "upvar"], 10 | ["scope", "variable"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for scopes. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/tcl/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"obar" 3 | "fo\"o\ 4 | bar" 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["string", "\"\""], 10 | ["string", "\"fo\\\"obar\""], 11 | ["string", "\"fo\\\"o\\\r\nbar\""] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/textile/footnote_feature.test: -------------------------------------------------------------------------------- 1 | Foo[1] 2 | Bar[42] 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["phrase", [ 8 | "Foo", ["footnote", [["punctuation", "["], "1", ["punctuation", "]"]]], 9 | "\r\nBar", ["footnote", [["punctuation", "["], "42", ["punctuation", "]"]]] 10 | ]] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for footnotes. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/twig/comment_feature.test: -------------------------------------------------------------------------------- 1 | {##} 2 | {# foo #} 3 | {# foo 4 | bar #} 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["comment", "{##}"], 10 | ["comment", "{# foo #}"], 11 | ["comment", "{# foo\r\nbar #}"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/verilog/comment_feature.test: -------------------------------------------------------------------------------- 1 | // 2 | // Foobar 3 | /**/ 4 | /* foo 5 | bar */ 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["comment", "//"], 11 | ["comment", "// Foobar"], 12 | ["comment", "/**/"], 13 | ["comment", "/* foo\r\nbar */"] 14 | ] 15 | 16 | ---------------------------------------------------- 17 | 18 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/verilog/constant_feature.test: -------------------------------------------------------------------------------- 1 | `define 2 | `UNKNOWN 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["constant", "`define"], 8 | ["constant", "`UNKNOWN"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for user defined constants. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/verilog/property_feature.test: -------------------------------------------------------------------------------- 1 | $display() 2 | 3 | ---------------------------------------------------- 4 | 5 | [ 6 | ["property", "$display"], ["punctuation", "("], ["punctuation", ")"] 7 | ] 8 | 9 | ---------------------------------------------------- 10 | 11 | Checks for kernel functions. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/verilog/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"obar" 3 | "foo\ 4 | bar" 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["string", "\"\""], 10 | ["string", "\"fo\\\"obar\""], 11 | ["string", "\"foo\\\r\nbar\""] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/vhdl/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/vhdl/comment_feature.test: -------------------------------------------------------------------------------- 1 | -- Foo 2 | --foobar 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["comment", "-- Foo"], 8 | ["comment", "--foobar"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/vhdl/constant_feature.test: -------------------------------------------------------------------------------- 1 | use 2 | library 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["constant", "use"], 8 | ["constant", "library"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for constants. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/vhdl/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "fo\"o" 3 | "fo\"o\ 4 | bar" 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["string", "\"\""], 10 | ["string", "\"fo\\\"o\""], 11 | ["string", "\"fo\\\"o\\\r\nbar\""] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/vim/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/vim/number_feature.test: -------------------------------------------------------------------------------- 1 | 0xBadFace 2 | 42 3 | 3.14159 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["number", "0xBadFace"], 9 | ["number", "42"], 10 | ["number", "3.14159"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for numbers. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/vim/string_feature.test: -------------------------------------------------------------------------------- 1 | "" 2 | "Fo\"ob'ar" 3 | '' 4 | '\' 5 | 'Foo''bar' 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["string", "\"\""], 11 | ["string", "\"Fo\\\"ob'ar\""], 12 | ["string", "''"], 13 | ["string", "'\\'"], 14 | ["string", "'Foo''bar'"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for strings. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/wiki/block-comment_feature.test: -------------------------------------------------------------------------------- 1 | /**/ 2 | /* foo */ 3 | /* foo 4 | bar */ 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["block-comment", "/**/"], 10 | ["block-comment", "/* foo */"], 11 | ["block-comment", "/* foo\r\nbar */"] 12 | ] 13 | 14 | ---------------------------------------------------- 15 | 16 | Checks for comments. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/wiki/hr_feature.test: -------------------------------------------------------------------------------- 1 | ---- 2 | ----- 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["hr", "----"], 8 | ["hr", "-----"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for horizontal rows. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/wiki/symbol_feature.test: -------------------------------------------------------------------------------- 1 | #REDIRECT [[somewhere]] 2 | ~~~ 3 | ~~~~ 4 | ~~~~~ 5 | 6 | ---------------------------------------------------- 7 | 8 | [ 9 | ["symbol", "#REDIRECT"], ["url", "[[somewhere]]"], 10 | ["symbol", "~~~"], 11 | ["symbol", "~~~~"], 12 | ["symbol", "~~~~~"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for redirects and signatures. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/yaml/boolean_feature.test: -------------------------------------------------------------------------------- 1 | --- 2 | foo: true 3 | bar: false 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["punctuation", "---"], 9 | ["key", "foo"], ["punctuation", ":"], 10 | ["boolean", "true"], 11 | ["key", "bar"], ["punctuation", ":"], 12 | ["boolean", "false"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for booleans. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/yaml/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/yaml/directive_feature.test: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | %TAG 3 | 4 | ---------------------------------------------------- 5 | 6 | [ 7 | ["directive", "%YAML 1.2"], 8 | ["directive", "%TAG"] 9 | ] 10 | 11 | ---------------------------------------------------- 12 | 13 | Checks for directives. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/yaml/important_feature.test: -------------------------------------------------------------------------------- 1 | &B1 2 | &A 3 | *A 4 | &SS 5 | *SS 6 | 7 | ---------------------------------------------------- 8 | 9 | [ 10 | ["important", "&B1"], 11 | ["important", "&A"], 12 | ["important", "*A"], 13 | ["important", "&SS"], 14 | ["important", "*SS"] 15 | ] 16 | 17 | ---------------------------------------------------- 18 | 19 | Checks for important. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/yaml/key_feature.test: -------------------------------------------------------------------------------- 1 | --- 2 | foo: 4 3 | FooBar : 5 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["punctuation", "---"], 9 | ["key", "foo"], ["punctuation", ":"], ["number", "4"], 10 | ["key", "FooBar"], ["punctuation", ":"], ["number", "5"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for keys. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/yaml/null_feature.test: -------------------------------------------------------------------------------- 1 | --- 2 | foo: null 3 | bar: ~ 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["punctuation", "---"], 9 | ["key", "foo"], ["punctuation", ":"], 10 | ["null", "null"], 11 | ["key", "bar"], ["punctuation", ":"], 12 | ["null", "~"] 13 | ] 14 | 15 | ---------------------------------------------------- 16 | 17 | Checks for null and ~. -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/languages/yaml/tag_feature.test: -------------------------------------------------------------------------------- 1 | !!map 2 | !!str 3 | !!seq 4 | 5 | ---------------------------------------------------- 6 | 7 | [ 8 | ["tag", "!!map"], 9 | ["tag", "!!str"], 10 | ["tag", "!!seq"] 11 | ] 12 | 13 | ---------------------------------------------------- 14 | 15 | Checks for tags -------------------------------------------------------------------------------- /public/bower_components/prism/prism-1.3.0/tests/run-child.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | var TestCase = require("./helper/test-case"); 4 | var argv = require("yargs").argv; 5 | 6 | if (argv.language) { 7 | process.on('message', function (data) { 8 | if (data.filePath) { 9 | try { 10 | TestCase.runTestCase(argv.language, data.filePath); 11 | process.send({success: true}); 12 | } catch (e) { 13 | process.send({error: e}); 14 | } 15 | } 16 | }); 17 | } -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/league-gothic/LICENSE: -------------------------------------------------------------------------------- 1 | SIL Open Font License (OFL) 2 | http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/league-gothic/league-gothic.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'League Gothic'; 3 | src: url('league-gothic.eot'); 4 | src: url('league-gothic.eot?#iefix') format('embedded-opentype'), 5 | url('league-gothic.woff') format('woff'), 6 | url('league-gothic.ttf') format('truetype'); 7 | 8 | font-weight: normal; 9 | font-style: normal; 10 | } -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/league-gothic/league-gothic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/league-gothic/league-gothic.eot -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/league-gothic/league-gothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/league-gothic/league-gothic.ttf -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/league-gothic/league-gothic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/league-gothic/league-gothic.woff -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/bower_components/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff -------------------------------------------------------------------------------- /public/bower_components/reveal.js/lib/js/html5shiv.js: -------------------------------------------------------------------------------- 1 | document.createElement('header'); 2 | document.createElement('nav'); 3 | document.createElement('section'); 4 | document.createElement('article'); 5 | document.createElement('aside'); 6 | document.createElement('footer'); 7 | document.createElement('hgroup'); -------------------------------------------------------------------------------- /public/bower_components/reveal.js/plugin/markdown/example.md: -------------------------------------------------------------------------------- 1 | # Markdown Demo 2 | 3 | 4 | 5 | ## External 1.1 6 | 7 | Content 1.1 8 | 9 | Note: This will only appear in the speaker notes window. 10 | 11 | 12 | ## External 1.2 13 | 14 | Content 1.2 15 | 16 | 17 | 18 | ## External 2 19 | 20 | Content 2.1 21 | 22 | 23 | 24 | ## External 3.1 25 | 26 | Content 3.1 27 | 28 | 29 | ## External 3.2 30 | 31 | Content 3.2 32 | -------------------------------------------------------------------------------- /public/src/css/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/src/css/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/src/css/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/src/css/images/AngularJS-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/AngularJS-large.png -------------------------------------------------------------------------------- /public/src/css/images/AngularJS-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/AngularJS-small.png -------------------------------------------------------------------------------- /public/src/css/images/logo-nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/logo-nav.png -------------------------------------------------------------------------------- /public/src/css/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/logo.png -------------------------------------------------------------------------------- /public/src/css/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/logo2.png -------------------------------------------------------------------------------- /public/src/css/images/og/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/01.png -------------------------------------------------------------------------------- /public/src/css/images/og/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/02.png -------------------------------------------------------------------------------- /public/src/css/images/og/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/03.png -------------------------------------------------------------------------------- /public/src/css/images/og/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/04.png -------------------------------------------------------------------------------- /public/src/css/images/og/05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/05.png -------------------------------------------------------------------------------- /public/src/css/images/og/06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/06.png -------------------------------------------------------------------------------- /public/src/css/images/og/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/07.png -------------------------------------------------------------------------------- /public/src/css/images/og/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/08.png -------------------------------------------------------------------------------- /public/src/css/images/og/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/09.png -------------------------------------------------------------------------------- /public/src/css/images/og/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/10.png -------------------------------------------------------------------------------- /public/src/css/images/og/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/11.png -------------------------------------------------------------------------------- /public/src/css/images/og/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/12.png -------------------------------------------------------------------------------- /public/src/css/images/og/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/13.png -------------------------------------------------------------------------------- /public/src/css/images/og/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/14.png -------------------------------------------------------------------------------- /public/src/css/images/og/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/15.png -------------------------------------------------------------------------------- /public/src/css/images/og/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/16.png -------------------------------------------------------------------------------- /public/src/css/images/og/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/17.png -------------------------------------------------------------------------------- /public/src/css/images/og/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/18.png -------------------------------------------------------------------------------- /public/src/css/images/og/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/19.png -------------------------------------------------------------------------------- /public/src/css/images/og/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/20.png -------------------------------------------------------------------------------- /public/src/css/images/og/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/21.png -------------------------------------------------------------------------------- /public/src/css/images/og/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/22.png -------------------------------------------------------------------------------- /public/src/css/images/og/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/23.png -------------------------------------------------------------------------------- /public/src/css/images/og/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/24.png -------------------------------------------------------------------------------- /public/src/css/images/og/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/25.png -------------------------------------------------------------------------------- /public/src/css/images/og/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/26.png -------------------------------------------------------------------------------- /public/src/css/images/og/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/27.png -------------------------------------------------------------------------------- /public/src/css/images/og/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/28.png -------------------------------------------------------------------------------- /public/src/css/images/og/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/29.png -------------------------------------------------------------------------------- /public/src/css/images/og/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/30.png -------------------------------------------------------------------------------- /public/src/css/images/og/30.png.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/30.png.1 -------------------------------------------------------------------------------- /public/src/css/images/og/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/31.png -------------------------------------------------------------------------------- /public/src/css/images/og/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/32.png -------------------------------------------------------------------------------- /public/src/css/images/og/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/33.png -------------------------------------------------------------------------------- /public/src/css/images/og/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/34.png -------------------------------------------------------------------------------- /public/src/css/images/og/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/35.png -------------------------------------------------------------------------------- /public/src/css/images/og/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/36.png -------------------------------------------------------------------------------- /public/src/css/images/og/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/37.png -------------------------------------------------------------------------------- /public/src/css/images/og/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/38.png -------------------------------------------------------------------------------- /public/src/css/images/og/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/39.png -------------------------------------------------------------------------------- /public/src/css/images/og/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/40.png -------------------------------------------------------------------------------- /public/src/css/images/og/animal_sprites_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/animal_sprites_1.png -------------------------------------------------------------------------------- /public/src/css/images/og/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinwyp/oreilly-generator/510c39334cbd3f62426ad09e3cf85a65f02c4a93/public/src/css/images/og/camera.png -------------------------------------------------------------------------------- /public/src/css/sass/main.scss: -------------------------------------------------------------------------------- 1 | @import "compass/css3"; 2 | 3 | @import "base/_base"; 4 | @import "layout/_header"; 5 | @import "pages/_login"; 6 | @import "pages/_og"; 7 | 8 | 9 | 10 | .mainbox { 11 | width: 1300px; 12 | } 13 | -------------------------------------------------------------------------------- /public/src/css/sass/pages/_login.scss: -------------------------------------------------------------------------------- 1 | .loginbox { 2 | width: 800px; 3 | 4 | h1 { 5 | text-align: left; 6 | margin: 30px 10px; 7 | } 8 | 9 | .signup_title { 10 | padding: 50px 0px 0px 0px; 11 | } 12 | 13 | .nopadding { 14 | padding-left: 0px; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /public/src/js/app.js: -------------------------------------------------------------------------------- 1 | 2 | (function() { 3 | 'use strict'; 4 | 5 | // Declare app level module which depends on filters, and services 6 | angular.module('websiteApp', ['ngStorage']); 7 | 8 | })(); 9 | -------------------------------------------------------------------------------- /public/src/js/filters.js: -------------------------------------------------------------------------------- 1 | 2 | (function() { 3 | 'use strict'; 4 | 5 | 6 | 7 | /* Filters */ 8 | 9 | angular.module('websiteApp').filter('interpolate', ['version', function(version) { 10 | return function(text) { 11 | return String(text).replace(/\%VERSION\%/mg, version); 12 | }; 13 | }]); 14 | 15 | 16 | })(); 17 | --------------------------------------------------------------------------------