├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── .eslintrc.js ├── fixtures ├── apostrophe-output.html ├── apostrophe.html ├── attrs-output.html ├── attrs.html ├── bar.js ├── basic-output.html ├── basic-transform-output.html ├── basic-transform.html ├── basic.css ├── basic.html ├── basic.js ├── basic.png ├── basic.svg ├── css-output.html ├── css.html ├── default.css ├── disable-output.html ├── disable.html ├── duplicate-css-output.html ├── duplicate-css.html ├── foo.js ├── html-tag-with-upper-attr-output.html ├── html-tag-with-upper-attr.html ├── ignore-output.html ├── ignore.css ├── ignore.html ├── ignore.js ├── ignore.svg ├── img-output.html ├── img.html ├── inline-events-output.html ├── inline-events.html ├── js-output.html ├── js.html ├── print.css ├── relative-output.html ├── relative.html ├── svg-output.html ├── svg-use-output.html ├── svg-use.html ├── svg.html ├── template-tag-output.html └── template-tag.html ├── main.js └── mocha.opts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/.eslintrc.js -------------------------------------------------------------------------------- /test/fixtures/apostrophe-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/apostrophe-output.html -------------------------------------------------------------------------------- /test/fixtures/apostrophe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/apostrophe.html -------------------------------------------------------------------------------- /test/fixtures/attrs-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/attrs-output.html -------------------------------------------------------------------------------- /test/fixtures/attrs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/attrs.html -------------------------------------------------------------------------------- /test/fixtures/bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/bar.js -------------------------------------------------------------------------------- /test/fixtures/basic-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/basic-output.html -------------------------------------------------------------------------------- /test/fixtures/basic-transform-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/basic-transform-output.html -------------------------------------------------------------------------------- /test/fixtures/basic-transform.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/fixtures/basic.css: -------------------------------------------------------------------------------- 1 | .basic { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /test/fixtures/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/basic.html -------------------------------------------------------------------------------- /test/fixtures/basic.js: -------------------------------------------------------------------------------- 1 | var basic = 'test'; -------------------------------------------------------------------------------- /test/fixtures/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/basic.png -------------------------------------------------------------------------------- /test/fixtures/basic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/basic.svg -------------------------------------------------------------------------------- /test/fixtures/css-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/css-output.html -------------------------------------------------------------------------------- /test/fixtures/css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/css.html -------------------------------------------------------------------------------- /test/fixtures/default.css: -------------------------------------------------------------------------------- 1 | .showOnPrint { 2 | display: none; 3 | } -------------------------------------------------------------------------------- /test/fixtures/disable-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/disable-output.html -------------------------------------------------------------------------------- /test/fixtures/disable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/disable.html -------------------------------------------------------------------------------- /test/fixtures/duplicate-css-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/duplicate-css-output.html -------------------------------------------------------------------------------- /test/fixtures/duplicate-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/duplicate-css.html -------------------------------------------------------------------------------- /test/fixtures/foo.js: -------------------------------------------------------------------------------- 1 | var foo = 'foo'; -------------------------------------------------------------------------------- /test/fixtures/html-tag-with-upper-attr-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/html-tag-with-upper-attr-output.html -------------------------------------------------------------------------------- /test/fixtures/html-tag-with-upper-attr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/html-tag-with-upper-attr.html -------------------------------------------------------------------------------- /test/fixtures/ignore-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/ignore-output.html -------------------------------------------------------------------------------- /test/fixtures/ignore.css: -------------------------------------------------------------------------------- 1 | .ignore { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/ignore.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/ignore.html -------------------------------------------------------------------------------- /test/fixtures/ignore.js: -------------------------------------------------------------------------------- 1 | var ignore = 'test'; 2 | -------------------------------------------------------------------------------- /test/fixtures/ignore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/ignore.svg -------------------------------------------------------------------------------- /test/fixtures/img-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/img-output.html -------------------------------------------------------------------------------- /test/fixtures/img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/img.html -------------------------------------------------------------------------------- /test/fixtures/inline-events-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/inline-events-output.html -------------------------------------------------------------------------------- /test/fixtures/inline-events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/inline-events.html -------------------------------------------------------------------------------- /test/fixtures/js-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/js-output.html -------------------------------------------------------------------------------- /test/fixtures/js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/js.html -------------------------------------------------------------------------------- /test/fixtures/print.css: -------------------------------------------------------------------------------- 1 | .showOnPrint { 2 | display: block; 3 | } -------------------------------------------------------------------------------- /test/fixtures/relative-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/relative-output.html -------------------------------------------------------------------------------- /test/fixtures/relative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/relative.html -------------------------------------------------------------------------------- /test/fixtures/svg-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/svg-output.html -------------------------------------------------------------------------------- /test/fixtures/svg-use-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/svg-use-output.html -------------------------------------------------------------------------------- /test/fixtures/svg-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/svg-use.html -------------------------------------------------------------------------------- /test/fixtures/svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/svg.html -------------------------------------------------------------------------------- /test/fixtures/template-tag-output.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/template-tag-output.html -------------------------------------------------------------------------------- /test/fixtures/template-tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/fixtures/template-tag.html -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/main.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashaffer/gulp-inline/HEAD/test/mocha.opts --------------------------------------------------------------------------------