author | Fabien Ninoles <fabien@tzone.org> |
Thu, 13 Oct 2011 08:46:42 -0400 | |
changeset 1 | a234a7579958 |
permissions | -rw-r--r-- |
(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)