├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── gulpfile.js ├── package.json └── snippets └── html-head-snippets.cson /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuchea/atom-html-head-snippets/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuchea/atom-html-head-snippets/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuchea/atom-html-head-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuchea/atom-html-head-snippets/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuchea/atom-html-head-snippets/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuchea/atom-html-head-snippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets/html-head-snippets.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshbuchea/atom-html-head-snippets/HEAD/snippets/html-head-snippets.cson --------------------------------------------------------------------------------