From 2fdf67b4ddfac97acb2b685957b6e4ca26474fb4 Mon Sep 17 00:00:00 2001 From: Yasushi SHOJI Date: Sun, 19 Sep 2021 18:56:19 +0900 Subject: [PATCH 1/3] ox-publish: Set default transformation As documented in Org Manual, we should have the default transformation function set to org-html-publish-to-html. Signed-off-by: Yasushi SHOJI --- lisp/ox-publish.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/ox-publish.el b/lisp/ox-publish.el index c25dd5473..99b1dca81 100644 --- a/lisp/ox-publish.el +++ b/lisp/ox-publish.el @@ -617,7 +617,8 @@ files, when entire projects are published (see (abbreviate-file-name filename)))) (project-plist (cdr project)) (publishing-function - (pcase (org-publish-property :publishing-function project) + (pcase (org-publish-property :publishing-function project + 'org-html-publish-to-html) (`nil (user-error "No publishing function chosen")) ((and f (pred listp)) f) (f (list f)))) -- 2.33.0