commit 8ef2988df739a6eaeacab0202a67e309a794009d parent c891a34151fdf23c5bf96d531f0ab51711ceff04 Author: Alex Balgavy <alex@balgavy.eu> Date: Fri, 19 Aug 2022 10:08:19 +0200 emacs: fix ox-gfm loading Diffstat:
M | emacs/config.org | | | 7 | ++++++- |
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/emacs/config.org b/emacs/config.org @@ -1000,7 +1000,12 @@ To make this work with Zola, I need to export Github-flavored markdown (fenced c #+begin_src emacs-lisp (require 'ox-publish) - (use-package ox-gfm :after ox) + (require 'ox-md) + + ;; See here: https://github.com/larstvei/ox-gfm/issues/36 + (use-package ox-gfm + :defer 1 + :after org) #+end_src First difficulty: Zola needs front matter with ~+++...+++~.