commit e5ab16ed901f8dd4d351e493ceb3ba6e0d6d9ec3
parent b9e638eff2b5b92867aec8f2f90882028bb9a426
Author: Alex Balgavy <alex@balgavy.eu>
Date: Sun, 2 Oct 2022 00:22:01 +0200
emacs: fix org-roam publish
They renamed one of the functions...
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/emacs/config.org b/emacs/config.org
@@ -1878,7 +1878,7 @@ And here's the custom publish function that adds/removes the necessary advice:
(defun za/org-gfm-publish-to-gfm-zola (plist filename pub-dir)
"Run `org-gfm-publish-to-gfm`, advising the necessary
functions to generate Zola-compatible markdown."
- (let ((advice '((org-gfm-template :override za/org-md-template-zola)
+ (let ((advice '((org-gfm-inner-template :override za/org-md-template-zola)
(org-md-link :filter-return za/org-md-link-zola)
(org-html--format-image :filter-args za/org-html--format-image)
(org-gfm-table :override org-md--convert-to-html)))) ; Zola uses CommonMark, so doesn't support Markdown tables