From 6e0f5e7730724d2914cc9064812b3a482ff780e2 Mon Sep 17 00:00:00 2001 From: Vedang Manerikar <ved.manerikar@gmail.com> Date: Fri, 3 Jan 2025 21:45:44 +0530 Subject: [PATCH] Add ox-gfm for publishing org-mode to markdown `ox-gfm` is part of my pipeline for publishing my Denote notes to my website. I will write about this sometime soon and publish the Denote side code for it as well. --- unravel-emacs.org | 12 ++++++++++++ unravel-modules/unravel-study.el | 4 ++++ 2 files changed, 16 insertions(+) diff --git a/unravel-emacs.org b/unravel-emacs.org index 8b21906..3435378 100644 --- a/unravel-emacs.org +++ b/unravel-emacs.org @@ -6050,6 +6050,18 @@ section for ~org-fc~ (flashcards)]]). ("C-c o" . org-board-keymap)) #+end_src +** The =unravel-stude.el= section for publishing org-mode content (~ox-gfm~) +:PROPERTIES: +:CUSTOM_ID: h:85D2A18F-9F3A-423E-9CBC-E09693E192D9 +:CREATED: [2025-01-01 Wed 21:20] +:END: + +#+begin_src emacs-lisp :tangle "unravel-modules/unravel-study.el" + ;;; Publishing org-mode content + (use-package ox-gfm + :ensure (:host github :repo "vedang/ox-gfm" :branch "master")) +#+end_src + ** Finally, we provide the =unravel-study.el= module :PROPERTIES: :CUSTOM_ID: h:13AF346B-1721-47FC-87A9-16EEB7818521 diff --git a/unravel-modules/unravel-study.el b/unravel-modules/unravel-study.el index 1728981..c7f8b4f 100644 --- a/unravel-modules/unravel-study.el +++ b/unravel-modules/unravel-study.el @@ -287,4 +287,8 @@ modifications." :bind-keymap ("C-c o" . org-board-keymap)) +;;; Publishing org-mode content +(use-package ox-gfm + :ensure (:host github :repo "vedang/ox-gfm" :branch "master")) + (provide 'unravel-study)