├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib └── index.coffee ├── menus └── tidy-markdown.cson └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notslang/atom-tidy-markdown/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notslang/atom-tidy-markdown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notslang/atom-tidy-markdown/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notslang/atom-tidy-markdown/HEAD/lib/index.coffee -------------------------------------------------------------------------------- /menus/tidy-markdown.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notslang/atom-tidy-markdown/HEAD/menus/tidy-markdown.cson -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notslang/atom-tidy-markdown/HEAD/package.json --------------------------------------------------------------------------------