108-pandoc: introduce new use-package

* convert one markup format into another

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2020-06-24 01:44:36 +02:00
parent 670e60949a
commit 7705d1bc34

View File

@@ -0,0 +1,17 @@
;;; 108-pandoc.el --- swiss-army-knife to convert from markup format
;;; Commentary:
;; convert files from one markup format into another,
;; and a impressive list of other common formats.
;; Reference: https://pandoc.org/
;;; Code:
(use-package pandoc-mode
:init
(add-hook 'pandoc-mode-hook 'pandoc-load-default-settings)
:config
(when (is-mac-p)
(add-to-list 'exec-path "/usr/local/texlive/2016basic/bin/universal-darwin")))
(provide '108-pandoc)
;;; 108-pandoc.el ends here