mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
lang/markdown: add markdown-command check
This commit is contained in:
@ -4,3 +4,8 @@
|
||||
(when (featurep! +pandoc)
|
||||
(unless (executable-find "pandoc")
|
||||
(warn! "Couldn't find pandoc, markdown-mode may have issues")))
|
||||
|
||||
(when (require 'markdown-mode nil t)
|
||||
(unless (executable-find markdown-command)
|
||||
(warn! "Couldn't find %S, can't export markdown to html"
|
||||
markdown-command)))
|
||||
|
Reference in New Issue
Block a user