├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── grammars ├── jekyll-html.cson ├── jekyll-json.cson └── jekyll-xml.cson ├── images └── jekyll.png ├── keymaps └── jekyll.cson ├── lib ├── jekyll │ ├── jekyll.coffee │ ├── new-post-view.coffee │ └── utils.coffee ├── main.coffee └── server │ ├── auto-build.coffee │ ├── build.coffee │ └── server.coffee ├── menus └── jekyll.cson ├── package.json ├── snippets └── jekyll.cson ├── spec ├── build-spec.coffee ├── jekyll-spec.coffee ├── new-post-view-spec.coffee ├── sample │ ├── _config.yml │ ├── _layouts │ │ └── default.html │ └── index.html └── utils-spec.coffee └── travis.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/README.md -------------------------------------------------------------------------------- /grammars/jekyll-html.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/grammars/jekyll-html.cson -------------------------------------------------------------------------------- /grammars/jekyll-json.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/grammars/jekyll-json.cson -------------------------------------------------------------------------------- /grammars/jekyll-xml.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/grammars/jekyll-xml.cson -------------------------------------------------------------------------------- /images/jekyll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/images/jekyll.png -------------------------------------------------------------------------------- /keymaps/jekyll.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/keymaps/jekyll.cson -------------------------------------------------------------------------------- /lib/jekyll/jekyll.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/lib/jekyll/jekyll.coffee -------------------------------------------------------------------------------- /lib/jekyll/new-post-view.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/lib/jekyll/new-post-view.coffee -------------------------------------------------------------------------------- /lib/jekyll/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/lib/jekyll/utils.coffee -------------------------------------------------------------------------------- /lib/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/lib/main.coffee -------------------------------------------------------------------------------- /lib/server/auto-build.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/lib/server/auto-build.coffee -------------------------------------------------------------------------------- /lib/server/build.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/lib/server/build.coffee -------------------------------------------------------------------------------- /lib/server/server.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/lib/server/server.coffee -------------------------------------------------------------------------------- /menus/jekyll.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/menus/jekyll.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/package.json -------------------------------------------------------------------------------- /snippets/jekyll.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/snippets/jekyll.cson -------------------------------------------------------------------------------- /spec/build-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/spec/build-spec.coffee -------------------------------------------------------------------------------- /spec/jekyll-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/spec/jekyll-spec.coffee -------------------------------------------------------------------------------- /spec/new-post-view-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/spec/new-post-view-spec.coffee -------------------------------------------------------------------------------- /spec/sample/_config.yml: -------------------------------------------------------------------------------- 1 | name: 'Jekyll-Atom Test Site' 2 | -------------------------------------------------------------------------------- /spec/sample/_layouts/default.html: -------------------------------------------------------------------------------- 1 | Default 2 | -------------------------------------------------------------------------------- /spec/sample/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | Index 5 | -------------------------------------------------------------------------------- /spec/utils-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/spec/utils-spec.coffee -------------------------------------------------------------------------------- /travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arcath/jekyll-atom/HEAD/travis.sh --------------------------------------------------------------------------------