summaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2023-07-25 12:50:06 +0200
committerMartin Polden <mpolden@mpolden.no>2023-07-25 12:50:06 +0200
commit48723a3a8c9213eeab54a1c056a405b1ff0a95fa (patch)
treeba716ade411c3a8576ea1bbe56d3c7101adc23e4 /lisp
parent81a503f252061a638a7b722577f728b028bdbefb (diff)
org: enable markdown exporter
Also removes unwanted exporters from the export UI.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/init-org.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/init-org.el b/lisp/init-org.el
index 0084c9e..249770f 100644
--- a/lisp/init-org.el
+++ b/lisp/init-org.el
@@ -84,6 +84,9 @@
("m" "Agenda and all TODOs split by state"
((agenda "") (todo "TODO") (todo "WAIT")))))
+ ;; set export backends
+ (setq org-export-backends '(ascii html md))
+
:config
;; enable template expansion when typing <s in org-mode
(add-to-list 'org-modules 'org-tempo t))