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.
This commit is contained in:
parent
153541e842
commit
6e0f5e7730
2 changed files with 16 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue