├── .gitignore ├── CONTRIBUTING.md ├── Cask ├── ChangeLog.md ├── LICENSE ├── Makefile ├── README.md ├── markdownfmt.el └── test ├── markdownfmt-version-test.el ├── test-helper.el └── test_invalid.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Emacs 2 | *~ 3 | .cask/ 4 | *.elc 5 | elpa 6 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/emacs-markdownfmt/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/emacs-markdownfmt/HEAD/Cask -------------------------------------------------------------------------------- /ChangeLog.md: -------------------------------------------------------------------------------- 1 | # emacs-markdownfmt ChangeLog 2 | 3 | ## 0.1.0 (09/06/2016) 4 | 5 | * Init project. 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/emacs-markdownfmt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/emacs-markdownfmt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/emacs-markdownfmt/HEAD/README.md -------------------------------------------------------------------------------- /markdownfmt.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/emacs-markdownfmt/HEAD/markdownfmt.el -------------------------------------------------------------------------------- /test/markdownfmt-version-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/emacs-markdownfmt/HEAD/test/markdownfmt-version-test.el -------------------------------------------------------------------------------- /test/test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/emacs-markdownfmt/HEAD/test/test-helper.el -------------------------------------------------------------------------------- /test/test_invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nlamirault/emacs-markdownfmt/HEAD/test/test_invalid.md --------------------------------------------------------------------------------