[Emacs] Add ham-mode config

This commit is contained in:
Ivan Malison 2016-10-18 18:28:02 -07:00
parent 726e8ab11a
commit b10472d559
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -3720,7 +3720,15 @@ Not really sure what this is
** gmail-message-mode
This is useful with server mode when editing gmail messages. I think that it is not currently working, or it may need to be manually enabled.
#+BEGIN_SRC emacs-lisp
(use-package gmail-message-mode)
(use-package gmail-message-mode
:demand t)
#+END_SRC
** ham-mode
#+BEGIN_SRC emacs-lisp
(use-package ham-mode
:config
(progn
(setq ham-mode-html-to-markdown-command '("pandoc" "--from" "html" "--to" "markdown" file))))
#+END_SRC
** alert
#+BEGIN_SRC emacs-lisp