├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── PLUGIN.md ├── README.md ├── index.js ├── package.json └── test ├── expect ├── html-result.html ├── index.html └── sugar-result.html ├── fixtures ├── components │ └── component.html ├── img.html ├── index.html ├── index.sml └── posthtml.config.js └── index.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @voischev @GitScrum @michael-ciniawsky -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/LICENSE -------------------------------------------------------------------------------- /PLUGIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/PLUGIN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/package.json -------------------------------------------------------------------------------- /test/expect/html-result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/test/expect/html-result.html -------------------------------------------------------------------------------- /test/expect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/test/expect/index.html -------------------------------------------------------------------------------- /test/expect/sugar-result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/test/expect/sugar-result.html -------------------------------------------------------------------------------- /test/fixtures/components/component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/test/fixtures/components/component.html -------------------------------------------------------------------------------- /test/fixtures/img.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/test/fixtures/index.html -------------------------------------------------------------------------------- /test/fixtures/index.sml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/test/fixtures/index.sml -------------------------------------------------------------------------------- /test/fixtures/posthtml.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/test/fixtures/posthtml.config.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/posthtml/gulp-posthtml/HEAD/test/index.test.js --------------------------------------------------------------------------------