mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Update list of markdown-compile-* in markdown doc
This commit is contained in:
@ -137,7 +137,8 @@ By default, the value of ~+markdown-compile-functions~ is:
|
|||||||
#+BEGIN_SRC lisp
|
#+BEGIN_SRC lisp
|
||||||
'(+markdown-compile-marked
|
'(+markdown-compile-marked
|
||||||
+markdown-compile-pandoc
|
+markdown-compile-pandoc
|
||||||
+markdown-compile-markdown)
|
+markdown-compile-markdown
|
||||||
|
+markdown-compile-multimarkdown)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
These functions will attempt to use the marked, pandoc and markdown executables,
|
These functions will attempt to use the marked, pandoc and markdown executables,
|
||||||
|
@ -32,7 +32,7 @@ Runs `+markdown-compile-functions' until the first function to return non-nil,
|
|||||||
otherwise throws an error."
|
otherwise throws an error."
|
||||||
(or (run-hook-with-args-until-success '+markdown-compile-functions
|
(or (run-hook-with-args-until-success '+markdown-compile-functions
|
||||||
beg end output-buffer)
|
beg end output-buffer)
|
||||||
(user-error "No markdown program could be found. Install marked, pandoc or markdown.")))
|
(user-error "No markdown program could be found. Install marked, pandoc, markdown or multimarkdown.")))
|
||||||
|
|
||||||
;;;###autoload
|
;;;###autoload
|
||||||
(defun +markdown-compile-marked (beg end output-buffer)
|
(defun +markdown-compile-marked (beg end output-buffer)
|
||||||
|
Reference in New Issue
Block a user