1
0
Fork 0

chore(export): change from ox-gfm to built-in ox-md

HTML tables are better supported in Vuepress than Markdown tables
This commit is contained in:
Lucien Cartier-Tilet 2023-12-17 21:31:17 +01:00
parent 5ded96f90e
commit 2134600c0a
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 2 additions and 3 deletions

View File

@ -4,12 +4,11 @@
(package-initialize)
(package-refresh-contents)
(package-install 'f)
(package-install 'ox-gfm)
(message "Emacs directory: %s" user-emacs-directory)
(require 'f)
(require 'ox-gfm)
(require 'ox-md)
(require 'ox-publish)
(setq org-confirm-babel-evaluate nil
@ -23,6 +22,6 @@
(message "Exporting %s" (f-relative file))
(with-temp-buffer
(find-file file)
(org-export-to-file 'gfm (concat (f-no-ext file) ".md"))))
(org-export-to-file 'md (concat (f-no-ext file) ".md"))))
(message "Project generated!")