From eade6e33dd12e4eaa6dd5f4ce742a5e8f302327c Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Thu, 9 Jan 2020 17:49:49 -0500 Subject: [PATCH] Use ox-gfm to export markdown from org-mode --- emacs/init.org | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/emacs/init.org b/emacs/init.org index 9ad605d..c5b1030 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -1571,6 +1571,15 @@ Redefine org-html-src-block to wrap code blocks in
 and language clas
 			    lang lang label code)))))))
 #+END_SRC
 
+*** Github-flavored markdown
+#+BEGIN_SRC emacs-lisp
+  (use-package ox-gfm
+    :defer t
+    :init
+    (with-eval-after-load 'org
+      (require 'ox-gfm)))
+#+END_SRC
+
 ** org-babel
 Literate programming!
 #+BEGIN_SRC emacs-lisp