From 7705d1bc344bfb37da5a79c4c9733d270837b798 Mon Sep 17 00:00:00 2001 From: Ralf Zerres Date: Wed, 24 Jun 2020 01:44:36 +0200 Subject: [PATCH] 108-pandoc: introduce new use-package * convert one markup format into another Signed-off-by: Ralf Zerres --- site-start.d/108-pandoc.el | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 site-start.d/108-pandoc.el diff --git a/site-start.d/108-pandoc.el b/site-start.d/108-pandoc.el new file mode 100644 index 0000000..41de4e4 --- /dev/null +++ b/site-start.d/108-pandoc.el @@ -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