First commit.

This commit is contained in:
2022-01-09 21:19:46 +01:00
commit df36844dcc
107 changed files with 6565 additions and 0 deletions

19
lisp/utilities/pandoc.el Normal file
View 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