mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
lang/markdown: remove +pandoc
The new default for markdown-command will try pandoc, if it is available. This makes pandoc-mode redundant. The mode also doesn't quite belong to the markdown module.
This commit is contained in:
@ -72,7 +72,8 @@ Returns its exit code."
|
||||
(call-process-region beg end
|
||||
shell-file-name nil output-buffer nil
|
||||
shell-command-switch
|
||||
"pandoc" "--smart" "-f" "markdown" "-t" "html")))
|
||||
"pandoc" "-f" "markdown" "-t" "html"
|
||||
"--standalone" "--mathjax" "--highlight-style=pygments")))
|
||||
|
||||
;;;###autoload
|
||||
(defun +markdown-compile-markdown (beg end output-buffer)
|
||||
|
Reference in New Issue
Block a user