├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── Makefile ├── contributing.md ├── docs ├── babel.md ├── base-adapter.md ├── buble.md ├── cjsx.md ├── coco.md ├── coffeescript.md ├── csso.md ├── dogescript.md ├── dot.md ├── eco.md ├── ejs.md ├── haml.md ├── handlebars.md ├── jade.md ├── jsx.md ├── less.md ├── livescript.md ├── marc.md ├── markdown.md ├── minify-css.md ├── minify-html.md ├── minify-js.md ├── mustache.md ├── myth.md ├── postcss.md ├── scss.md ├── stylus.md ├── swig.md ├── toffee.md └── typescript.md ├── lib ├── adapter_base.coffee ├── adapters │ ├── LiveScript │ │ ├── 1.x.coffee │ │ └── index.coffee │ ├── babel │ │ ├── 4.x - 5.x.coffee │ │ ├── 6.x.coffee │ │ └── index.coffee │ ├── buble │ │ ├── 0.8.x - 0.15.x.coffee │ │ └── index.coffee │ ├── cjsx │ │ ├── 3.x.coffee │ │ ├── 4.x - 5.x.coffee │ │ └── index.coffee │ ├── coco │ │ ├── 0.9.x.coffee │ │ └── index.coffee │ ├── coffee-script │ │ ├── 1.x.coffee │ │ └── index.coffee │ ├── csso │ │ ├── 1.0.x - 1.3.x.coffee │ │ ├── 2.x - 3.x.coffee │ │ ├── ^1.4.coffee │ │ └── index.coffee │ ├── dogescript │ │ ├── 2.x.coffee │ │ └── index.coffee │ ├── dot │ │ ├── 1.x.coffee │ │ └── index.coffee │ ├── eco │ │ ├── 1.x.coffee │ │ ├── =1.1.0-rc-3.coffee │ │ └── index.coffee │ ├── ejs │ │ ├── 2.x.coffee │ │ └── index.coffee │ ├── escape-html │ │ ├── 0.5.x.coffee │ │ ├── 1.x.coffee │ │ └── index.coffee │ ├── haml │ │ ├── 0.6.x.coffee │ │ └── index.coffee │ ├── handlebars │ │ ├── 3.x - 4.x.coffee │ │ └── index.coffee │ ├── jade │ │ ├── 1.x.coffee │ │ └── index.coffee │ ├── jsx │ │ ├── 0.13.x.coffee │ │ └── index.coffee │ ├── less │ │ ├── 2.x - 3.x.coffee │ │ └── index.coffee │ ├── marc │ │ ├── 0.1.x.coffee │ │ └── index.coffee │ ├── markdown │ │ ├── 0.3.x.coffee │ │ └── index.coffee │ ├── minify-css │ │ ├── 3.x - 4.x.coffee │ │ └── index.coffee │ ├── minify-html │ │ ├── 0.7.x - 1.x.coffee │ │ ├── 2.x - 3.x.coffee │ │ └── index.coffee │ ├── minify-js │ │ ├── 2.x.coffee │ │ └── index.coffee │ ├── mustache │ │ ├── 3.x.coffee │ │ └── index.coffee │ ├── myth │ │ ├── 1.x.coffee │ │ └── index.coffee │ ├── postcss │ │ ├── 4.x - 5.x.coffee │ │ └── index.coffee │ ├── pug │ │ ├── 2.0.0-rc - 2.x.coffee │ │ └── index.coffee │ ├── scss │ │ ├── 2.x.coffee │ │ ├── 3.x - 4.x.coffee │ │ └── index.coffee │ ├── stylus │ │ ├── 0.x.coffee │ │ └── index.coffee │ ├── swig │ │ ├── 1.x.coffee │ │ └── index.coffee │ ├── toffee │ │ ├── 0.1.x.coffee │ │ └── index.coffee │ └── typescript │ │ ├── 1.x.coffee │ │ └── index.coffee ├── index.coffee └── sourcemaps.coffee ├── license.md ├── package.json ├── readme.md ├── test ├── fixtures │ ├── babel │ │ ├── basic.js │ │ └── expected │ │ │ ├── basic.js │ │ │ └── string.js │ ├── buble │ │ ├── basic.js │ │ └── expected │ │ │ ├── basic.js │ │ │ └── string.js │ ├── cjsx │ │ ├── basic.cjsx │ │ └── expected │ │ │ ├── basic.coffee │ │ │ └── string.coffee │ ├── coco │ │ ├── basic.co │ │ └── expected │ │ │ ├── basic.js │ │ │ └── string.js │ ├── coffee │ │ ├── basic.coffee │ │ └── expected │ │ │ ├── basic.js │ │ │ └── string.js │ ├── csso │ │ ├── basic.css │ │ ├── expected │ │ │ ├── basic.css │ │ │ ├── opts.css │ │ │ └── string.css │ │ └── opts.css │ ├── dogescript │ │ ├── basic.djs │ │ └── expected │ │ │ ├── basic.js │ │ │ └── string.js │ ├── dot │ │ ├── basic.dot │ │ ├── client-complex.dot │ │ ├── client.dot │ │ ├── expected │ │ │ ├── basic.html │ │ │ ├── client-complex.html │ │ │ ├── client.html │ │ │ ├── cstring.html │ │ │ ├── partial.html │ │ │ ├── precompile.html │ │ │ ├── pstring.html │ │ │ └── rstring.html │ │ ├── partial.dot │ │ └── precompile.dot │ ├── eco │ │ ├── basic.eco │ │ ├── client.eco │ │ ├── expected │ │ │ ├── basic.html │ │ │ ├── client.html │ │ │ ├── cstring.html │ │ │ ├── precompile.html │ │ │ ├── pstring.html │ │ │ └── rstring.html │ │ └── precompile.eco │ ├── ejs │ │ ├── basic.ejs │ │ ├── client-complex.ejs │ │ ├── client.ejs │ │ ├── expected │ │ │ ├── basic.html │ │ │ ├── client-complex.html │ │ │ ├── client.html │ │ │ ├── cstring.html │ │ │ ├── partial.html │ │ │ ├── precompile.html │ │ │ ├── pstring.html │ │ │ └── rstring.html │ │ ├── includeme.ejs │ │ ├── partial.ejs │ │ └── precompile.ejs │ ├── escape-html │ │ ├── basic.html │ │ ├── escapable.html │ │ └── expected │ │ │ ├── basic.html │ │ │ ├── escapable.html │ │ │ └── string.html │ ├── haml │ │ ├── basic.haml │ │ ├── expected │ │ │ ├── basic.html │ │ │ ├── precompile.html │ │ │ ├── pstring.html │ │ │ └── rstring.html │ │ └── precompile.haml │ ├── handlebars │ │ ├── basic.hbs │ │ ├── client-complex.hbs │ │ ├── client.hbs │ │ ├── expected │ │ │ ├── basic.html │ │ │ ├── client-complex.html │ │ │ ├── client.html │ │ │ ├── cstring.html │ │ │ ├── partial.html │ │ │ ├── precompile.html │ │ │ ├── pstring.html │ │ │ └── rstring.html │ │ ├── partial.hbs │ │ └── precompile.hbs │ ├── jade │ │ ├── _partial_content.jade │ │ ├── async.jade │ │ ├── basic.jade │ │ ├── client-complex.jade │ │ ├── client.jade │ │ ├── expected │ │ │ ├── basic.html │ │ │ ├── client-complex.html │ │ │ ├── client.html │ │ │ ├── cstring.html │ │ │ ├── partial.html │ │ │ ├── precompile.html │ │ │ ├── pstring.html │ │ │ └── rstring.html │ │ ├── partial.jade │ │ └── precompile.jade │ ├── jsx │ │ ├── basic.jsx │ │ └── expected │ │ │ ├── basic.js │ │ │ └── string.js │ ├── less │ │ ├── _import.less │ │ ├── basic.less │ │ ├── expected │ │ │ ├── basic.css │ │ │ ├── external.css │ │ │ └── string.css │ │ └── external.less │ ├── livescript │ │ ├── basic.ls │ │ └── expected │ │ │ ├── basic.js │ │ │ └── string.js │ ├── marc │ │ ├── basic.md │ │ └── expected │ │ │ └── basic.html │ ├── markdown │ │ ├── basic.md │ │ ├── expected │ │ │ ├── basic.html │ │ │ ├── opts.html │ │ │ └── string.html │ │ └── opts.md │ ├── minify-css │ │ ├── basic.css │ │ ├── expected │ │ │ ├── basic.css │ │ │ ├── opts.css │ │ │ └── string.css │ │ └── opts.css │ ├── minify-html │ │ ├── basic.html │ │ ├── expected │ │ │ ├── basic.html │ │ │ ├── opts.html │ │ │ └── string.html │ │ └── opts.html │ ├── minify-js │ │ ├── basic.js │ │ ├── expected │ │ │ ├── basic.js │ │ │ ├── opts.js │ │ │ └── string.js │ │ └── opts.js │ ├── mustache │ │ ├── basic.mustache │ │ ├── client-complex.mustache │ │ ├── expected │ │ │ ├── basic.html │ │ │ ├── client-complex.html │ │ │ ├── partial.html │ │ │ ├── precompile.html │ │ │ ├── pstring.html │ │ │ └── string.html │ │ ├── partial.mustache │ │ └── precompile.mustache │ ├── myth │ │ ├── basic.myth │ │ ├── expected │ │ │ ├── basic.css │ │ │ ├── import.css │ │ │ └── string.css │ │ ├── import.myth │ │ └── imported.myth │ ├── postcss │ │ ├── basic.css │ │ ├── expected │ │ │ ├── basic.css │ │ │ ├── string.css │ │ │ └── var.css │ │ └── var.css │ ├── pug │ │ ├── _partial_content.pug │ │ ├── async.pug │ │ ├── basic.pug │ │ ├── client-complex.pug │ │ ├── client.pug │ │ ├── expected │ │ │ ├── basic.html │ │ │ ├── client-complex.html │ │ │ ├── client.html │ │ │ ├── cstring.html │ │ │ ├── partial.html │ │ │ ├── precompile.html │ │ │ ├── pstring.html │ │ │ └── rstring.html │ │ ├── partial.pug │ │ └── precompile.pug │ ├── scss │ │ ├── _mixin_lib.scss │ │ ├── basic.scss │ │ ├── expected │ │ │ ├── basic.css │ │ │ ├── external.css │ │ │ └── string.css │ │ └── external.scss │ ├── stylus │ │ ├── basic.styl │ │ ├── embedurl.styl │ │ ├── expected │ │ │ ├── basic.css │ │ │ ├── defines.css │ │ │ ├── embedurl-opts.css │ │ │ ├── embedurl.css │ │ │ ├── import1.css │ │ │ ├── import2.css │ │ │ ├── include1.css │ │ │ ├── include2.css │ │ │ ├── include_css.css │ │ │ ├── plugins1.css │ │ │ ├── plugins2.css │ │ │ ├── rawdefine.css │ │ │ └── string.css │ │ ├── extra_plugin │ │ │ └── index.styl │ │ ├── img │ │ │ ├── default.png │ │ │ └── wow.jpg │ │ ├── import1.styl │ │ ├── import2.styl │ │ ├── include1.styl │ │ ├── include2.styl │ │ ├── include_css.styl │ │ ├── pluginz │ │ │ ├── lib.styl │ │ │ └── lib2.styl │ │ ├── rawdefine.styl │ │ └── to_include.css │ ├── swig │ │ ├── _layout.html │ │ ├── basic.swig │ │ ├── client-complex.swig │ │ ├── client.swig │ │ ├── expected │ │ │ ├── basic.html │ │ │ ├── client-complex.html │ │ │ ├── client.html │ │ │ ├── cstring.html │ │ │ ├── partial.html │ │ │ ├── precompile.html │ │ │ ├── pstring.html │ │ │ └── string.html │ │ ├── partial.swig │ │ └── precompile.swig │ ├── toffee │ │ ├── basic.toffee │ │ ├── expected │ │ │ ├── basic.html │ │ │ ├── my_templates-2.html │ │ │ ├── my_templates.html │ │ │ ├── no-header-templ.html │ │ │ └── template.html │ │ ├── my_templates-2.toffee │ │ ├── my_templates.toffee │ │ └── template.toffee │ └── typescript │ │ ├── basic.ts │ │ └── expected │ │ ├── basic.js │ │ └── string.js ├── legacy.coffee ├── legacy │ └── scss │ │ ├── 2.x │ │ ├── fixtures │ │ │ └── scss │ │ │ │ ├── _mixin_lib.scss │ │ │ │ ├── basic.scss │ │ │ │ ├── expected │ │ │ │ ├── basic.css │ │ │ │ ├── external.css │ │ │ │ └── string.css │ │ │ │ └── external.scss │ │ ├── mocha.opts │ │ ├── package.json │ │ └── test.coffee │ │ ├── config.coffee │ │ └── init.coffee ├── mocha.opts ├── support │ └── all.js └── test.coffee └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | polytest_* 4 | coverage -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/Makefile -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/contributing.md -------------------------------------------------------------------------------- /docs/babel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/babel.md -------------------------------------------------------------------------------- /docs/base-adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/base-adapter.md -------------------------------------------------------------------------------- /docs/buble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/buble.md -------------------------------------------------------------------------------- /docs/cjsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/cjsx.md -------------------------------------------------------------------------------- /docs/coco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/coco.md -------------------------------------------------------------------------------- /docs/coffeescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/coffeescript.md -------------------------------------------------------------------------------- /docs/csso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/csso.md -------------------------------------------------------------------------------- /docs/dogescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/dogescript.md -------------------------------------------------------------------------------- /docs/dot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/dot.md -------------------------------------------------------------------------------- /docs/eco.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/eco.md -------------------------------------------------------------------------------- /docs/ejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/ejs.md -------------------------------------------------------------------------------- /docs/haml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/haml.md -------------------------------------------------------------------------------- /docs/handlebars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/handlebars.md -------------------------------------------------------------------------------- /docs/jade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/jade.md -------------------------------------------------------------------------------- /docs/jsx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/jsx.md -------------------------------------------------------------------------------- /docs/less.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/less.md -------------------------------------------------------------------------------- /docs/livescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/livescript.md -------------------------------------------------------------------------------- /docs/marc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/marc.md -------------------------------------------------------------------------------- /docs/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/markdown.md -------------------------------------------------------------------------------- /docs/minify-css.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/minify-css.md -------------------------------------------------------------------------------- /docs/minify-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/minify-html.md -------------------------------------------------------------------------------- /docs/minify-js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/minify-js.md -------------------------------------------------------------------------------- /docs/mustache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/mustache.md -------------------------------------------------------------------------------- /docs/myth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/myth.md -------------------------------------------------------------------------------- /docs/postcss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/postcss.md -------------------------------------------------------------------------------- /docs/scss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/scss.md -------------------------------------------------------------------------------- /docs/stylus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/stylus.md -------------------------------------------------------------------------------- /docs/swig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/swig.md -------------------------------------------------------------------------------- /docs/toffee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/toffee.md -------------------------------------------------------------------------------- /docs/typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/docs/typescript.md -------------------------------------------------------------------------------- /lib/adapter_base.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapter_base.coffee -------------------------------------------------------------------------------- /lib/adapters/LiveScript/1.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/LiveScript/1.x.coffee -------------------------------------------------------------------------------- /lib/adapters/LiveScript/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/LiveScript/index.coffee -------------------------------------------------------------------------------- /lib/adapters/babel/4.x - 5.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/babel/4.x - 5.x.coffee -------------------------------------------------------------------------------- /lib/adapters/babel/6.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/babel/6.x.coffee -------------------------------------------------------------------------------- /lib/adapters/babel/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/babel/index.coffee -------------------------------------------------------------------------------- /lib/adapters/buble/0.8.x - 0.15.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/buble/0.8.x - 0.15.x.coffee -------------------------------------------------------------------------------- /lib/adapters/buble/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/buble/index.coffee -------------------------------------------------------------------------------- /lib/adapters/cjsx/3.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/cjsx/3.x.coffee -------------------------------------------------------------------------------- /lib/adapters/cjsx/4.x - 5.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/cjsx/4.x - 5.x.coffee -------------------------------------------------------------------------------- /lib/adapters/cjsx/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/cjsx/index.coffee -------------------------------------------------------------------------------- /lib/adapters/coco/0.9.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/coco/0.9.x.coffee -------------------------------------------------------------------------------- /lib/adapters/coco/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/coco/index.coffee -------------------------------------------------------------------------------- /lib/adapters/coffee-script/1.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/coffee-script/1.x.coffee -------------------------------------------------------------------------------- /lib/adapters/coffee-script/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/coffee-script/index.coffee -------------------------------------------------------------------------------- /lib/adapters/csso/1.0.x - 1.3.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/csso/1.0.x - 1.3.x.coffee -------------------------------------------------------------------------------- /lib/adapters/csso/2.x - 3.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/csso/2.x - 3.x.coffee -------------------------------------------------------------------------------- /lib/adapters/csso/^1.4.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/csso/^1.4.coffee -------------------------------------------------------------------------------- /lib/adapters/csso/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/csso/index.coffee -------------------------------------------------------------------------------- /lib/adapters/dogescript/2.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/dogescript/2.x.coffee -------------------------------------------------------------------------------- /lib/adapters/dogescript/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/dogescript/index.coffee -------------------------------------------------------------------------------- /lib/adapters/dot/1.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/dot/1.x.coffee -------------------------------------------------------------------------------- /lib/adapters/dot/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/dot/index.coffee -------------------------------------------------------------------------------- /lib/adapters/eco/1.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/eco/1.x.coffee -------------------------------------------------------------------------------- /lib/adapters/eco/=1.1.0-rc-3.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/eco/=1.1.0-rc-3.coffee -------------------------------------------------------------------------------- /lib/adapters/eco/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/eco/index.coffee -------------------------------------------------------------------------------- /lib/adapters/ejs/2.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/ejs/2.x.coffee -------------------------------------------------------------------------------- /lib/adapters/ejs/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/ejs/index.coffee -------------------------------------------------------------------------------- /lib/adapters/escape-html/0.5.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/escape-html/0.5.x.coffee -------------------------------------------------------------------------------- /lib/adapters/escape-html/1.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/escape-html/1.x.coffee -------------------------------------------------------------------------------- /lib/adapters/escape-html/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/escape-html/index.coffee -------------------------------------------------------------------------------- /lib/adapters/haml/0.6.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/haml/0.6.x.coffee -------------------------------------------------------------------------------- /lib/adapters/haml/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/haml/index.coffee -------------------------------------------------------------------------------- /lib/adapters/handlebars/3.x - 4.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/handlebars/3.x - 4.x.coffee -------------------------------------------------------------------------------- /lib/adapters/handlebars/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/handlebars/index.coffee -------------------------------------------------------------------------------- /lib/adapters/jade/1.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/jade/1.x.coffee -------------------------------------------------------------------------------- /lib/adapters/jade/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/jade/index.coffee -------------------------------------------------------------------------------- /lib/adapters/jsx/0.13.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/jsx/0.13.x.coffee -------------------------------------------------------------------------------- /lib/adapters/jsx/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/jsx/index.coffee -------------------------------------------------------------------------------- /lib/adapters/less/2.x - 3.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/less/2.x - 3.x.coffee -------------------------------------------------------------------------------- /lib/adapters/less/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/less/index.coffee -------------------------------------------------------------------------------- /lib/adapters/marc/0.1.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/marc/0.1.x.coffee -------------------------------------------------------------------------------- /lib/adapters/marc/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/marc/index.coffee -------------------------------------------------------------------------------- /lib/adapters/markdown/0.3.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/markdown/0.3.x.coffee -------------------------------------------------------------------------------- /lib/adapters/markdown/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/markdown/index.coffee -------------------------------------------------------------------------------- /lib/adapters/minify-css/3.x - 4.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/minify-css/3.x - 4.x.coffee -------------------------------------------------------------------------------- /lib/adapters/minify-css/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/minify-css/index.coffee -------------------------------------------------------------------------------- /lib/adapters/minify-html/0.7.x - 1.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/minify-html/0.7.x - 1.x.coffee -------------------------------------------------------------------------------- /lib/adapters/minify-html/2.x - 3.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/minify-html/2.x - 3.x.coffee -------------------------------------------------------------------------------- /lib/adapters/minify-html/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/minify-html/index.coffee -------------------------------------------------------------------------------- /lib/adapters/minify-js/2.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/minify-js/2.x.coffee -------------------------------------------------------------------------------- /lib/adapters/minify-js/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/minify-js/index.coffee -------------------------------------------------------------------------------- /lib/adapters/mustache/3.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/mustache/3.x.coffee -------------------------------------------------------------------------------- /lib/adapters/mustache/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/mustache/index.coffee -------------------------------------------------------------------------------- /lib/adapters/myth/1.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/myth/1.x.coffee -------------------------------------------------------------------------------- /lib/adapters/myth/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/myth/index.coffee -------------------------------------------------------------------------------- /lib/adapters/postcss/4.x - 5.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/postcss/4.x - 5.x.coffee -------------------------------------------------------------------------------- /lib/adapters/postcss/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/postcss/index.coffee -------------------------------------------------------------------------------- /lib/adapters/pug/2.0.0-rc - 2.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/pug/2.0.0-rc - 2.x.coffee -------------------------------------------------------------------------------- /lib/adapters/pug/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/pug/index.coffee -------------------------------------------------------------------------------- /lib/adapters/scss/2.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/scss/2.x.coffee -------------------------------------------------------------------------------- /lib/adapters/scss/3.x - 4.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/scss/3.x - 4.x.coffee -------------------------------------------------------------------------------- /lib/adapters/scss/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/scss/index.coffee -------------------------------------------------------------------------------- /lib/adapters/stylus/0.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/stylus/0.x.coffee -------------------------------------------------------------------------------- /lib/adapters/stylus/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/stylus/index.coffee -------------------------------------------------------------------------------- /lib/adapters/swig/1.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/swig/1.x.coffee -------------------------------------------------------------------------------- /lib/adapters/swig/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/swig/index.coffee -------------------------------------------------------------------------------- /lib/adapters/toffee/0.1.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/toffee/0.1.x.coffee -------------------------------------------------------------------------------- /lib/adapters/toffee/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/toffee/index.coffee -------------------------------------------------------------------------------- /lib/adapters/typescript/1.x.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/typescript/1.x.coffee -------------------------------------------------------------------------------- /lib/adapters/typescript/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/adapters/typescript/index.coffee -------------------------------------------------------------------------------- /lib/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/index.coffee -------------------------------------------------------------------------------- /lib/sourcemaps.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/lib/sourcemaps.coffee -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/readme.md -------------------------------------------------------------------------------- /test/fixtures/babel/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/babel/basic.js -------------------------------------------------------------------------------- /test/fixtures/babel/expected/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/babel/expected/basic.js -------------------------------------------------------------------------------- /test/fixtures/babel/expected/string.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | console.log('foo'); -------------------------------------------------------------------------------- /test/fixtures/buble/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/buble/basic.js -------------------------------------------------------------------------------- /test/fixtures/buble/expected/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/buble/expected/basic.js -------------------------------------------------------------------------------- /test/fixtures/buble/expected/string.js: -------------------------------------------------------------------------------- 1 | console.log('foo'); -------------------------------------------------------------------------------- /test/fixtures/cjsx/basic.cjsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/cjsx/basic.cjsx -------------------------------------------------------------------------------- /test/fixtures/cjsx/expected/basic.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/cjsx/expected/basic.coffee -------------------------------------------------------------------------------- /test/fixtures/cjsx/expected/string.coffee: -------------------------------------------------------------------------------- 1 | React.createElement("div", {"className": "foo"}) -------------------------------------------------------------------------------- /test/fixtures/coco/basic.co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/coco/basic.co -------------------------------------------------------------------------------- /test/fixtures/coco/expected/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/coco/expected/basic.js -------------------------------------------------------------------------------- /test/fixtures/coco/expected/string.js: -------------------------------------------------------------------------------- 1 | function test(){ 2 | return console.log('foo'); 3 | } -------------------------------------------------------------------------------- /test/fixtures/coffee/basic.coffee: -------------------------------------------------------------------------------- 1 | console.log 5 + 10 2 | -------------------------------------------------------------------------------- /test/fixtures/coffee/expected/basic.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | console.log(5 + 10); 3 | 4 | }).call(this); 5 | -------------------------------------------------------------------------------- /test/fixtures/coffee/expected/string.js: -------------------------------------------------------------------------------- 1 | console.log("test"); 2 | -------------------------------------------------------------------------------- /test/fixtures/csso/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/csso/basic.css -------------------------------------------------------------------------------- /test/fixtures/csso/expected/basic.css: -------------------------------------------------------------------------------- 1 | /*! keep this comment */ 2 | .hello{margin:0;color:silver;border:1px solid} -------------------------------------------------------------------------------- /test/fixtures/csso/expected/opts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/csso/expected/opts.css -------------------------------------------------------------------------------- /test/fixtures/csso/expected/string.css: -------------------------------------------------------------------------------- 1 | .hello{foo:bar;color:green} -------------------------------------------------------------------------------- /test/fixtures/csso/opts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/csso/opts.css -------------------------------------------------------------------------------- /test/fixtures/dogescript/basic.djs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dogescript/basic.djs -------------------------------------------------------------------------------- /test/fixtures/dogescript/expected/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dogescript/expected/basic.js -------------------------------------------------------------------------------- /test/fixtures/dogescript/expected/string.js: -------------------------------------------------------------------------------- 1 | console.log('wow'); 2 | -------------------------------------------------------------------------------- /test/fixtures/dot/basic.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/basic.dot -------------------------------------------------------------------------------- /test/fixtures/dot/client-complex.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/client-complex.dot -------------------------------------------------------------------------------- /test/fixtures/dot/client.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/client.dot -------------------------------------------------------------------------------- /test/fixtures/dot/expected/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/expected/basic.html -------------------------------------------------------------------------------- /test/fixtures/dot/expected/client-complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/expected/client-complex.html -------------------------------------------------------------------------------- /test/fixtures/dot/expected/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/expected/client.html -------------------------------------------------------------------------------- /test/fixtures/dot/expected/cstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/expected/cstring.html -------------------------------------------------------------------------------- /test/fixtures/dot/expected/partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/expected/partial.html -------------------------------------------------------------------------------- /test/fixtures/dot/expected/precompile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/expected/precompile.html -------------------------------------------------------------------------------- /test/fixtures/dot/expected/pstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/expected/pstring.html -------------------------------------------------------------------------------- /test/fixtures/dot/expected/rstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/expected/rstring.html -------------------------------------------------------------------------------- /test/fixtures/dot/partial.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/partial.dot -------------------------------------------------------------------------------- /test/fixtures/dot/precompile.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/dot/precompile.dot -------------------------------------------------------------------------------- /test/fixtures/eco/basic.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/eco/basic.eco -------------------------------------------------------------------------------- /test/fixtures/eco/client.eco: -------------------------------------------------------------------------------- 1 | Woah look, a <%= thing %> -------------------------------------------------------------------------------- /test/fixtures/eco/expected/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/eco/expected/basic.html -------------------------------------------------------------------------------- /test/fixtures/eco/expected/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/eco/expected/client.html -------------------------------------------------------------------------------- /test/fixtures/eco/expected/cstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/eco/expected/cstring.html -------------------------------------------------------------------------------- /test/fixtures/eco/expected/precompile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/eco/expected/precompile.html -------------------------------------------------------------------------------- /test/fixtures/eco/expected/pstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/eco/expected/pstring.html -------------------------------------------------------------------------------- /test/fixtures/eco/expected/rstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/eco/expected/rstring.html -------------------------------------------------------------------------------- /test/fixtures/eco/precompile.eco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/eco/precompile.eco -------------------------------------------------------------------------------- /test/fixtures/ejs/basic.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/ejs/basic.ejs -------------------------------------------------------------------------------- /test/fixtures/ejs/client-complex.ejs: -------------------------------------------------------------------------------- 1 |

Here's a client side template. And <%= foo %>

2 | -------------------------------------------------------------------------------- /test/fixtures/ejs/client.ejs: -------------------------------------------------------------------------------- 1 |

Wow look a client side template <%= foo %>>

2 | -------------------------------------------------------------------------------- /test/fixtures/ejs/expected/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/ejs/expected/basic.html -------------------------------------------------------------------------------- /test/fixtures/ejs/expected/client-complex.html: -------------------------------------------------------------------------------- 1 |

Here's a client side template. And local

2 | -------------------------------------------------------------------------------- /test/fixtures/ejs/expected/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/ejs/expected/client.html -------------------------------------------------------------------------------- /test/fixtures/ejs/expected/cstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/ejs/expected/cstring.html -------------------------------------------------------------------------------- /test/fixtures/ejs/expected/partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/ejs/expected/partial.html -------------------------------------------------------------------------------- /test/fixtures/ejs/expected/precompile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/ejs/expected/precompile.html -------------------------------------------------------------------------------- /test/fixtures/ejs/expected/pstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/ejs/expected/pstring.html -------------------------------------------------------------------------------- /test/fixtures/ejs/expected/rstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/ejs/expected/rstring.html -------------------------------------------------------------------------------- /test/fixtures/ejs/includeme.ejs: -------------------------------------------------------------------------------- 1 |

look ma i made it to the partial!

-------------------------------------------------------------------------------- /test/fixtures/ejs/partial.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/ejs/partial.ejs -------------------------------------------------------------------------------- /test/fixtures/ejs/precompile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/ejs/precompile.ejs -------------------------------------------------------------------------------- /test/fixtures/escape-html/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/escape-html/basic.html -------------------------------------------------------------------------------- /test/fixtures/escape-html/escapable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/escape-html/escapable.html -------------------------------------------------------------------------------- /test/fixtures/escape-html/expected/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/escape-html/expected/basic.html -------------------------------------------------------------------------------- /test/fixtures/escape-html/expected/escapable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/escape-html/expected/escapable.html -------------------------------------------------------------------------------- /test/fixtures/escape-html/expected/string.html: -------------------------------------------------------------------------------- 1 |

§

2 | -------------------------------------------------------------------------------- /test/fixtures/haml/basic.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/haml/basic.haml -------------------------------------------------------------------------------- /test/fixtures/haml/expected/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/haml/expected/basic.html -------------------------------------------------------------------------------- /test/fixtures/haml/expected/precompile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/haml/expected/precompile.html -------------------------------------------------------------------------------- /test/fixtures/haml/expected/pstring.html: -------------------------------------------------------------------------------- 1 | 2 |

Hello there my friend

-------------------------------------------------------------------------------- /test/fixtures/haml/expected/rstring.html: -------------------------------------------------------------------------------- 1 | 2 |
Whats up mang
-------------------------------------------------------------------------------- /test/fixtures/haml/precompile.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/haml/precompile.haml -------------------------------------------------------------------------------- /test/fixtures/handlebars/basic.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/handlebars/basic.hbs -------------------------------------------------------------------------------- /test/fixtures/handlebars/client-complex.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/handlebars/client-complex.hbs -------------------------------------------------------------------------------- /test/fixtures/handlebars/client.hbs: -------------------------------------------------------------------------------- 1 |

Under the {{ body_of_water }}

2 | -------------------------------------------------------------------------------- /test/fixtures/handlebars/expected/basic.html: -------------------------------------------------------------------------------- 1 | Look, it's a file with handlebars stuff in it! -------------------------------------------------------------------------------- /test/fixtures/handlebars/expected/client-complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/handlebars/expected/client-complex.html -------------------------------------------------------------------------------- /test/fixtures/handlebars/expected/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/handlebars/expected/client.html -------------------------------------------------------------------------------- /test/fixtures/handlebars/expected/cstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/handlebars/expected/cstring.html -------------------------------------------------------------------------------- /test/fixtures/handlebars/expected/partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/handlebars/expected/partial.html -------------------------------------------------------------------------------- /test/fixtures/handlebars/expected/precompile.html: -------------------------------------------------------------------------------- 1 |

Here's a precompiled file with me special friend r kelly

-------------------------------------------------------------------------------- /test/fixtures/handlebars/expected/pstring.html: -------------------------------------------------------------------------------- 1 | Hello there my friend -------------------------------------------------------------------------------- /test/fixtures/handlebars/expected/rstring.html: -------------------------------------------------------------------------------- 1 | Hello there homie -------------------------------------------------------------------------------- /test/fixtures/handlebars/partial.hbs: -------------------------------------------------------------------------------- 1 |

Introducing Partials!

2 | {{> foo }} -------------------------------------------------------------------------------- /test/fixtures/handlebars/precompile.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/handlebars/precompile.hbs -------------------------------------------------------------------------------- /test/fixtures/jade/_partial_content.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/jade/_partial_content.jade -------------------------------------------------------------------------------- /test/fixtures/jade/async.jade: -------------------------------------------------------------------------------- 1 | strong IMMA FIRIN MAH LAZERS 2 | p= wow.such 3 | -------------------------------------------------------------------------------- /test/fixtures/jade/basic.jade: -------------------------------------------------------------------------------- 1 | strong IMMA FIRIN MAH LAZERS 2 | p= foo 3 | -------------------------------------------------------------------------------- /test/fixtures/jade/client-complex.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/jade/client-complex.jade -------------------------------------------------------------------------------- /test/fixtures/jade/client.jade: -------------------------------------------------------------------------------- 1 | p look at my browser-compatibility 2 | p= foo 3 | -------------------------------------------------------------------------------- /test/fixtures/jade/expected/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/jade/expected/basic.html -------------------------------------------------------------------------------- /test/fixtures/jade/expected/client-complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/jade/expected/client-complex.html -------------------------------------------------------------------------------- /test/fixtures/jade/expected/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/jade/expected/client.html -------------------------------------------------------------------------------- /test/fixtures/jade/expected/cstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/jade/expected/cstring.html -------------------------------------------------------------------------------- /test/fixtures/jade/expected/partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/jade/expected/partial.html -------------------------------------------------------------------------------- /test/fixtures/jade/expected/precompile.html: -------------------------------------------------------------------------------- 1 |

spooderman

such options

-------------------------------------------------------------------------------- /test/fixtures/jade/expected/pstring.html: -------------------------------------------------------------------------------- 1 |

why cant I shot web?

such options

-------------------------------------------------------------------------------- /test/fixtures/jade/expected/rstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/jade/expected/rstring.html -------------------------------------------------------------------------------- /test/fixtures/jade/partial.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/jade/partial.jade -------------------------------------------------------------------------------- /test/fixtures/jade/precompile.jade: -------------------------------------------------------------------------------- 1 | h1 spooderman 2 | p= foo 3 | -------------------------------------------------------------------------------- /test/fixtures/jsx/basic.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/jsx/basic.jsx -------------------------------------------------------------------------------- /test/fixtures/jsx/expected/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/jsx/expected/basic.js -------------------------------------------------------------------------------- /test/fixtures/jsx/expected/string.js: -------------------------------------------------------------------------------- 1 | React.createElement("div", {className: "foo"}, this.props.bar) -------------------------------------------------------------------------------- /test/fixtures/less/_import.less: -------------------------------------------------------------------------------- 1 | .bar { 2 | wow: 'foo'; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/less/basic.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/less/basic.less -------------------------------------------------------------------------------- /test/fixtures/less/expected/basic.css: -------------------------------------------------------------------------------- 1 | .test { 2 | color: #428bca; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/less/expected/external.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/less/expected/external.css -------------------------------------------------------------------------------- /test/fixtures/less/expected/string.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | width: 120; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/less/external.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/less/external.less -------------------------------------------------------------------------------- /test/fixtures/livescript/basic.ls: -------------------------------------------------------------------------------- 1 | x = 10 2 | do -> 3 | x := 5 4 | -------------------------------------------------------------------------------- /test/fixtures/livescript/expected/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/livescript/expected/basic.js -------------------------------------------------------------------------------- /test/fixtures/livescript/expected/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/livescript/expected/string.js -------------------------------------------------------------------------------- /test/fixtures/marc/basic.md: -------------------------------------------------------------------------------- 1 | I am using __markdown__ with {{label}}! 2 | -------------------------------------------------------------------------------- /test/fixtures/marc/expected/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/marc/expected/basic.html -------------------------------------------------------------------------------- /test/fixtures/markdown/basic.md: -------------------------------------------------------------------------------- 1 | Here's an [awesome link](http://google.com) -------------------------------------------------------------------------------- /test/fixtures/markdown/expected/basic.html: -------------------------------------------------------------------------------- 1 |

Here's an awesome link

2 | -------------------------------------------------------------------------------- /test/fixtures/markdown/expected/opts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/markdown/expected/opts.html -------------------------------------------------------------------------------- /test/fixtures/markdown/expected/string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/markdown/expected/string.html -------------------------------------------------------------------------------- /test/fixtures/markdown/opts.md: -------------------------------------------------------------------------------- 1 |

heres some html

2 | -------------------------------------------------------------------------------- /test/fixtures/minify-css/basic.css: -------------------------------------------------------------------------------- 1 | .sunny-spots { 2 | color: golden; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/minify-css/expected/basic.css: -------------------------------------------------------------------------------- 1 | .sunny-spots{color:golden} 2 | -------------------------------------------------------------------------------- /test/fixtures/minify-css/expected/opts.css: -------------------------------------------------------------------------------- 1 | .selector1{wow:such styles}.two{ermahgerd:red} -------------------------------------------------------------------------------- /test/fixtures/minify-css/expected/string.css: -------------------------------------------------------------------------------- 1 | .test{foo:bar} 2 | -------------------------------------------------------------------------------- /test/fixtures/minify-css/opts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/minify-css/opts.css -------------------------------------------------------------------------------- /test/fixtures/minify-html/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/minify-html/basic.html -------------------------------------------------------------------------------- /test/fixtures/minify-html/expected/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/minify-html/expected/basic.html -------------------------------------------------------------------------------- /test/fixtures/minify-html/expected/opts.html: -------------------------------------------------------------------------------- 1 |

2 |

look at my biceps!

3 |
-------------------------------------------------------------------------------- /test/fixtures/minify-html/expected/string.html: -------------------------------------------------------------------------------- 1 |

hello

-------------------------------------------------------------------------------- /test/fixtures/minify-html/opts.html: -------------------------------------------------------------------------------- 1 |
2 |

look at my biceps!

3 |
-------------------------------------------------------------------------------- /test/fixtures/minify-js/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/minify-js/basic.js -------------------------------------------------------------------------------- /test/fixtures/minify-js/expected/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/minify-js/expected/basic.js -------------------------------------------------------------------------------- /test/fixtures/minify-js/expected/opts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/minify-js/expected/opts.js -------------------------------------------------------------------------------- /test/fixtures/minify-js/expected/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/minify-js/expected/string.js -------------------------------------------------------------------------------- /test/fixtures/minify-js/opts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/minify-js/opts.js -------------------------------------------------------------------------------- /test/fixtures/mustache/basic.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/mustache/basic.mustache -------------------------------------------------------------------------------- /test/fixtures/mustache/client-complex.mustache: -------------------------------------------------------------------------------- 1 |

Ok here we go with the local: {{ wow }}

2 | -------------------------------------------------------------------------------- /test/fixtures/mustache/expected/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/mustache/expected/basic.html -------------------------------------------------------------------------------- /test/fixtures/mustache/expected/client-complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/mustache/expected/client-complex.html -------------------------------------------------------------------------------- /test/fixtures/mustache/expected/partial.html: -------------------------------------------------------------------------------- 1 | foo bar -------------------------------------------------------------------------------- /test/fixtures/mustache/expected/precompile.html: -------------------------------------------------------------------------------- 1 | Hello there, fine foo! 2 | 3 | -------------------------------------------------------------------------------- /test/fixtures/mustache/expected/pstring.html: -------------------------------------------------------------------------------- 1 | Wow, such compile -------------------------------------------------------------------------------- /test/fixtures/mustache/expected/string.html: -------------------------------------------------------------------------------- 1 | Why hello, dogeudle! -------------------------------------------------------------------------------- /test/fixtures/mustache/partial.mustache: -------------------------------------------------------------------------------- 1 | {{> partial }} -------------------------------------------------------------------------------- /test/fixtures/mustache/precompile.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/mustache/precompile.mustache -------------------------------------------------------------------------------- /test/fixtures/myth/basic.myth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/myth/basic.myth -------------------------------------------------------------------------------- /test/fixtures/myth/expected/basic.css: -------------------------------------------------------------------------------- 1 | a { 2 | color: #847AD1; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/myth/expected/import.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/myth/expected/import.css -------------------------------------------------------------------------------- /test/fixtures/myth/expected/string.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/myth/expected/string.css -------------------------------------------------------------------------------- /test/fixtures/myth/import.myth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/myth/import.myth -------------------------------------------------------------------------------- /test/fixtures/myth/imported.myth: -------------------------------------------------------------------------------- 1 | html { 2 | background: blue; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/postcss/basic.css: -------------------------------------------------------------------------------- 1 | .test2 { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/postcss/expected/basic.css: -------------------------------------------------------------------------------- 1 | .test2 { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/postcss/expected/string.css: -------------------------------------------------------------------------------- 1 | .test { color: green; } 2 | -------------------------------------------------------------------------------- /test/fixtures/postcss/expected/var.css: -------------------------------------------------------------------------------- 1 | .test { 2 | background: green; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/postcss/var.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/postcss/var.css -------------------------------------------------------------------------------- /test/fixtures/pug/_partial_content.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/pug/_partial_content.pug -------------------------------------------------------------------------------- /test/fixtures/pug/async.pug: -------------------------------------------------------------------------------- 1 | strong IMMA FIRIN MAH LAZERS 2 | p= wow.such 3 | -------------------------------------------------------------------------------- /test/fixtures/pug/basic.pug: -------------------------------------------------------------------------------- 1 | strong IMMA FIRIN MAH LAZERS 2 | p= foo 3 | -------------------------------------------------------------------------------- /test/fixtures/pug/client-complex.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/pug/client-complex.pug -------------------------------------------------------------------------------- /test/fixtures/pug/client.pug: -------------------------------------------------------------------------------- 1 | p look at my browser-compatibility 2 | p= foo 3 | -------------------------------------------------------------------------------- /test/fixtures/pug/expected/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/pug/expected/basic.html -------------------------------------------------------------------------------- /test/fixtures/pug/expected/client-complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/pug/expected/client-complex.html -------------------------------------------------------------------------------- /test/fixtures/pug/expected/client.html: -------------------------------------------------------------------------------- 1 |

look at my browser-compatibility

such options

2 | -------------------------------------------------------------------------------- /test/fixtures/pug/expected/cstring.html: -------------------------------------------------------------------------------- 1 |

imma firin mah lazer!

such options

2 | -------------------------------------------------------------------------------- /test/fixtures/pug/expected/partial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/pug/expected/partial.html -------------------------------------------------------------------------------- /test/fixtures/pug/expected/precompile.html: -------------------------------------------------------------------------------- 1 |

spooderman

such options

-------------------------------------------------------------------------------- /test/fixtures/pug/expected/pstring.html: -------------------------------------------------------------------------------- 1 |

why cant I shot web?

such options

-------------------------------------------------------------------------------- /test/fixtures/pug/expected/rstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/pug/expected/rstring.html -------------------------------------------------------------------------------- /test/fixtures/pug/partial.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/pug/partial.pug -------------------------------------------------------------------------------- /test/fixtures/pug/precompile.pug: -------------------------------------------------------------------------------- 1 | h1 spooderman 2 | p= foo 3 | -------------------------------------------------------------------------------- /test/fixtures/scss/_mixin_lib.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/scss/_mixin_lib.scss -------------------------------------------------------------------------------- /test/fixtures/scss/basic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/scss/basic.scss -------------------------------------------------------------------------------- /test/fixtures/scss/expected/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/scss/expected/basic.css -------------------------------------------------------------------------------- /test/fixtures/scss/expected/external.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | color: "red"; } 3 | -------------------------------------------------------------------------------- /test/fixtures/scss/expected/string.css: -------------------------------------------------------------------------------- 1 | foo { 2 | bar: "red"; } 3 | -------------------------------------------------------------------------------- /test/fixtures/scss/external.scss: -------------------------------------------------------------------------------- 1 | @import "_mixin_lib"; 2 | 3 | .foo { 4 | @include set_color('red'); 5 | } 6 | -------------------------------------------------------------------------------- /test/fixtures/stylus/basic.styl: -------------------------------------------------------------------------------- 1 | .lazers 2 | firing: 'very yes' 3 | -------------------------------------------------------------------------------- /test/fixtures/stylus/embedurl.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/embedurl.styl -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/basic.css: -------------------------------------------------------------------------------- 1 | .lazers { 2 | firing: 'very yes'; 3 | } -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/defines.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/expected/defines.css -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/embedurl-opts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/expected/embedurl-opts.css -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/embedurl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/expected/embedurl.css -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/import1.css: -------------------------------------------------------------------------------- 1 | .test { 2 | color: #f00; 3 | } -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/import2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/expected/import2.css -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/include1.css: -------------------------------------------------------------------------------- 1 | .test { 2 | color: #f00; 3 | } -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/include2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/expected/include2.css -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/include_css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/expected/include_css.css -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/plugins1.css: -------------------------------------------------------------------------------- 1 | .test { 2 | foo: 500; 3 | } -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/plugins2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/expected/plugins2.css -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/rawdefine.css: -------------------------------------------------------------------------------- 1 | .testing { 2 | background-color: #0000FF; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/stylus/expected/string.css: -------------------------------------------------------------------------------- 1 | .test { 2 | foo: bar; 3 | } -------------------------------------------------------------------------------- /test/fixtures/stylus/extra_plugin/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/extra_plugin/index.styl -------------------------------------------------------------------------------- /test/fixtures/stylus/img/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/img/default.png -------------------------------------------------------------------------------- /test/fixtures/stylus/img/wow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/img/wow.jpg -------------------------------------------------------------------------------- /test/fixtures/stylus/import1.styl: -------------------------------------------------------------------------------- 1 | .test 2 | print_red() 3 | -------------------------------------------------------------------------------- /test/fixtures/stylus/import2.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/import2.styl -------------------------------------------------------------------------------- /test/fixtures/stylus/include1.styl: -------------------------------------------------------------------------------- 1 | @import 'pluginz/lib' 2 | 3 | .test 4 | print_red() 5 | -------------------------------------------------------------------------------- /test/fixtures/stylus/include2.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/include2.styl -------------------------------------------------------------------------------- /test/fixtures/stylus/include_css.styl: -------------------------------------------------------------------------------- 1 | @import 'to_include.css' 2 | 3 | .red 4 | color: blue 5 | -------------------------------------------------------------------------------- /test/fixtures/stylus/pluginz/lib.styl: -------------------------------------------------------------------------------- 1 | print_red() 2 | color: red 3 | -------------------------------------------------------------------------------- /test/fixtures/stylus/pluginz/lib2.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/stylus/pluginz/lib2.styl -------------------------------------------------------------------------------- /test/fixtures/stylus/rawdefine.styl: -------------------------------------------------------------------------------- 1 | .testing 2 | background-color: unquote(rdefine.blue1) 3 | -------------------------------------------------------------------------------- /test/fixtures/stylus/to_include.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | color: green; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/swig/_layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/swig/_layout.html -------------------------------------------------------------------------------- /test/fixtures/swig/basic.swig: -------------------------------------------------------------------------------- 1 |

{{ author }}

-------------------------------------------------------------------------------- /test/fixtures/swig/client-complex.swig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/swig/client.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/swig/client.swig -------------------------------------------------------------------------------- /test/fixtures/swig/expected/basic.html: -------------------------------------------------------------------------------- 1 |

Jeff Escalante

-------------------------------------------------------------------------------- /test/fixtures/swig/expected/client-complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/swig/expected/client-complex.html -------------------------------------------------------------------------------- /test/fixtures/swig/expected/client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/swig/expected/client.html -------------------------------------------------------------------------------- /test/fixtures/swig/expected/cstring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/swig/expected/cstring.html -------------------------------------------------------------------------------- /test/fixtures/swig/expected/partial.html: -------------------------------------------------------------------------------- 1 |

Hello!

2 | -------------------------------------------------------------------------------- /test/fixtures/swig/expected/precompile.html: -------------------------------------------------------------------------------- 1 |

Hello!

-------------------------------------------------------------------------------- /test/fixtures/swig/expected/pstring.html: -------------------------------------------------------------------------------- 1 |

Hello!

-------------------------------------------------------------------------------- /test/fixtures/swig/expected/string.html: -------------------------------------------------------------------------------- 1 |

Bar

-------------------------------------------------------------------------------- /test/fixtures/swig/partial.swig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/swig/partial.swig -------------------------------------------------------------------------------- /test/fixtures/swig/precompile.swig: -------------------------------------------------------------------------------- 1 |

{{ title }}

-------------------------------------------------------------------------------- /test/fixtures/toffee/basic.toffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/toffee/basic.toffee -------------------------------------------------------------------------------- /test/fixtures/toffee/expected/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/toffee/expected/basic.html -------------------------------------------------------------------------------- /test/fixtures/toffee/expected/my_templates-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/toffee/expected/my_templates-2.html -------------------------------------------------------------------------------- /test/fixtures/toffee/expected/my_templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/toffee/expected/my_templates.html -------------------------------------------------------------------------------- /test/fixtures/toffee/expected/no-header-templ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/toffee/expected/no-header-templ.html -------------------------------------------------------------------------------- /test/fixtures/toffee/expected/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/toffee/expected/template.html -------------------------------------------------------------------------------- /test/fixtures/toffee/my_templates-2.toffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/toffee/my_templates-2.toffee -------------------------------------------------------------------------------- /test/fixtures/toffee/my_templates.toffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/toffee/my_templates.toffee -------------------------------------------------------------------------------- /test/fixtures/toffee/template.toffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/toffee/template.toffee -------------------------------------------------------------------------------- /test/fixtures/typescript/basic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/typescript/basic.ts -------------------------------------------------------------------------------- /test/fixtures/typescript/expected/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/fixtures/typescript/expected/basic.js -------------------------------------------------------------------------------- /test/fixtures/typescript/expected/string.js: -------------------------------------------------------------------------------- 1 | var n = 42; 2 | console.log(n); 3 | -------------------------------------------------------------------------------- /test/legacy.coffee: -------------------------------------------------------------------------------- 1 | require './legacy/scss/init' -------------------------------------------------------------------------------- /test/legacy/scss/2.x/fixtures/scss/_mixin_lib.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/legacy/scss/2.x/fixtures/scss/_mixin_lib.scss -------------------------------------------------------------------------------- /test/legacy/scss/2.x/fixtures/scss/basic.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/legacy/scss/2.x/fixtures/scss/basic.scss -------------------------------------------------------------------------------- /test/legacy/scss/2.x/fixtures/scss/expected/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/legacy/scss/2.x/fixtures/scss/expected/basic.css -------------------------------------------------------------------------------- /test/legacy/scss/2.x/fixtures/scss/expected/external.css: -------------------------------------------------------------------------------- 1 | .foo { 2 | color: 'red'; } 3 | -------------------------------------------------------------------------------- /test/legacy/scss/2.x/fixtures/scss/expected/string.css: -------------------------------------------------------------------------------- 1 | foo { 2 | bar: 'red'; } 3 | -------------------------------------------------------------------------------- /test/legacy/scss/2.x/fixtures/scss/external.scss: -------------------------------------------------------------------------------- 1 | @import "_mixin_lib"; 2 | 3 | .foo { 4 | @include set_color('red'); 5 | } 6 | -------------------------------------------------------------------------------- /test/legacy/scss/2.x/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/legacy/scss/2.x/mocha.opts -------------------------------------------------------------------------------- /test/legacy/scss/2.x/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/legacy/scss/2.x/package.json -------------------------------------------------------------------------------- /test/legacy/scss/2.x/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/legacy/scss/2.x/test.coffee -------------------------------------------------------------------------------- /test/legacy/scss/config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/legacy/scss/config.coffee -------------------------------------------------------------------------------- /test/legacy/scss/init.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/legacy/scss/init.coffee -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/support/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/support/all.js -------------------------------------------------------------------------------- /test/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/test/test.coffee -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jescalan/accord/HEAD/yarn.lock --------------------------------------------------------------------------------