From 2839afc2625d87e7678102cb406656253cc5d2b4 Mon Sep 17 00:00:00 2001 From: pancho horrillo Date: Sun, 24 May 2020 07:21:58 +0200 Subject: [PATCH] Update list of markdown-compile-* in markdown doc --- modules/lang/markdown/README.org | 3 ++- modules/lang/markdown/autoload.el | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/lang/markdown/README.org b/modules/lang/markdown/README.org index 2810e12c4..810c7eb4c 100644 --- a/modules/lang/markdown/README.org +++ b/modules/lang/markdown/README.org @@ -137,7 +137,8 @@ By default, the value of ~+markdown-compile-functions~ is: #+BEGIN_SRC lisp '(+markdown-compile-marked +markdown-compile-pandoc - +markdown-compile-markdown) + +markdown-compile-markdown + +markdown-compile-multimarkdown) #+END_SRC These functions will attempt to use the marked, pandoc and markdown executables, diff --git a/modules/lang/markdown/autoload.el b/modules/lang/markdown/autoload.el index 44d942c33..8f266188a 100644 --- a/modules/lang/markdown/autoload.el +++ b/modules/lang/markdown/autoload.el @@ -32,7 +32,7 @@ Runs `+markdown-compile-functions' until the first function to return non-nil, otherwise throws an error." (or (run-hook-with-args-until-success '+markdown-compile-functions 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 (defun +markdown-compile-marked (beg end output-buffer)