Files
emacs.d/site-start.d/108-pandoc.el
Ralf Zerres cb385e40fd 108-pandoc: leave mac specific handling
* comment out the mac tex path

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
2021-07-25 12:51:36 +02:00

18 lines
496 B
EmacsLisp

;;; 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