added check for pandoc executable when +pandoc feature is enabled

This commit is contained in:
Patrick Elliott 2018-06-22 13:46:56 +02:00
parent 25bc9cfbaf
commit c99a02fa53

View file

@ -0,0 +1,6 @@
;; -*- lexical-binding: t; no-byte-compile: t; -*-
;;; lang/markdown/doctor.el
(when (featurep! +pandoc)
(unless (executable-find "pandoc")
(warn! "Couldn't find pandoc, markdown-mode may have issues"))