First commit.
This commit is contained in:
19
lisp/utilities/pandoc.el
Normal file
19
lisp/utilities/pandoc.el
Normal file
@@ -0,0 +1,19 @@
|
||||
;;; pandoc.el --- Interface to Pandoc -*- lexical-binding: t; -*-
|
||||
;;; Commentary: An Emacs mode for interacting with Pandoc
|
||||
;;; Code: https://github.com/joostkremers/pandoc-mode
|
||||
|
||||
(defun user--pandoc-mode-hook ()
|
||||
"Pandoc mode hook."
|
||||
(pandoc-load-default-settings))
|
||||
|
||||
|
||||
(use-package pandoc-mode
|
||||
:if (executable-find "pandoc")
|
||||
:defer
|
||||
:diminish pandoc-mode
|
||||
:init
|
||||
(add-hook 'pandoc-mode 'user--pandoc-mode-hook))
|
||||
|
||||
|
||||
(provide 'utilities/pandoc)
|
||||
;;; pandoc.el ends here
|
Reference in New Issue
Block a user