Add markdown-toc plugin

This commit is contained in:
Henrik Lissner 2016-04-16 21:25:18 -04:00
parent ce9bc0ba5b
commit 0db56ccdb4
2 changed files with 4 additions and 1 deletions

1
Cask
View file

@ -212,6 +212,7 @@
;; Text modes -- modules/module-text.el
(depends-on "markdown-mode")
(depends-on "markdown-toc")
;; Web -- modules/module-web.el
(depends-on "web-beautify")

View file

@ -36,7 +36,9 @@
:n "[p" 'markdown-promote
:n "]p" 'markdown-demote
:i "M--" 'markdown-insert-hr)))
:i "M--" 'markdown-insert-hr))
(use-package markdown-toc :commands (markdown-toc-generate-toc)))
(provide 'module-text)
;;; module-text.el ends here