├── .gitignore ├── .jshintrc ├── .travis.yml ├── README.md ├── index.js ├── package.json └── test ├── expected ├── absolute_path.html ├── another.html ├── extend_and_include.html ├── no_annotations.html └── only_include.html ├── fixtures ├── absolute_path.html ├── another.html ├── extend_and_include.html ├── include.html ├── include_include.html ├── include_master.html ├── master_a.html ├── master_b.html ├── multiline_json.html └── only_include.html └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/absolute_path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/expected/absolute_path.html -------------------------------------------------------------------------------- /test/expected/another.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/expected/another.html -------------------------------------------------------------------------------- /test/expected/extend_and_include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/expected/extend_and_include.html -------------------------------------------------------------------------------- /test/expected/no_annotations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/expected/no_annotations.html -------------------------------------------------------------------------------- /test/expected/only_include.html: -------------------------------------------------------------------------------- 1 | included * 2 2 | 3 | -------------------------------------------------------------------------------- /test/fixtures/absolute_path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/fixtures/absolute_path.html -------------------------------------------------------------------------------- /test/fixtures/another.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/fixtures/another.html -------------------------------------------------------------------------------- /test/fixtures/extend_and_include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/fixtures/extend_and_include.html -------------------------------------------------------------------------------- /test/fixtures/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/fixtures/include.html -------------------------------------------------------------------------------- /test/fixtures/include_include.html: -------------------------------------------------------------------------------- 1 | included * 2 2 | -------------------------------------------------------------------------------- /test/fixtures/include_master.html: -------------------------------------------------------------------------------- 1 | include master: -------------------------------------------------------------------------------- /test/fixtures/master_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/fixtures/master_a.html -------------------------------------------------------------------------------- /test/fixtures/master_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/fixtures/master_b.html -------------------------------------------------------------------------------- /test/fixtures/multiline_json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/fixtures/multiline_json.html -------------------------------------------------------------------------------- /test/fixtures/only_include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/fixtures/only_include.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankFang/gulp-html-extend/HEAD/test/index.js --------------------------------------------------------------------------------