lisp/my-markdown.el
author Fabien Ninoles <fabien@tzone.org>
Sun, 13 Sep 2015 14:47:26 -0400
changeset 14 6348b9f842b2
parent 1 a234a7579958
permissions -rw-r--r--
Move back to non-shifty awesomeness.

(add-to-list 'auto-mode-alist '("\\.md$" . markdown-mode))

(setq ditaa-cmd "ditaa")
(defun ditaa-generate (start end)
  (interactive "r")
  (let ((tmpfile (make-temp-file "ditaa")))
    (write-region start end tmpfile)
    (shell-command
     (concat ditaa-cmd " " tmpfile " " (concat buffer-file-name ".png")))))

(provide 'my-markdown)