├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── keymaps └── markdown-folder.cson ├── lib └── markdown-folder.coffee ├── markdown-folder-mdpad.gif ├── menus └── markdown-folder.cson ├── package.json ├── spec ├── markdown-folder-spec.coffee ├── test-fenced.md ├── test-no-h1.md └── test.md └── styles └── markdown-folder.less /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/README.md -------------------------------------------------------------------------------- /keymaps/markdown-folder.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/keymaps/markdown-folder.cson -------------------------------------------------------------------------------- /lib/markdown-folder.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/lib/markdown-folder.coffee -------------------------------------------------------------------------------- /markdown-folder-mdpad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/markdown-folder-mdpad.gif -------------------------------------------------------------------------------- /menus/markdown-folder.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/menus/markdown-folder.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/package.json -------------------------------------------------------------------------------- /spec/markdown-folder-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/spec/markdown-folder-spec.coffee -------------------------------------------------------------------------------- /spec/test-fenced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/spec/test-fenced.md -------------------------------------------------------------------------------- /spec/test-no-h1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/spec/test-no-h1.md -------------------------------------------------------------------------------- /spec/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/spec/test.md -------------------------------------------------------------------------------- /styles/markdown-folder.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tshort/markdown-folder/HEAD/styles/markdown-folder.less --------------------------------------------------------------------------------