commit bdafb3098044e1ca807031c79d58b154639a16a0
parent 494ed9ac933eb0af4beb013d5b67437a50c82e4c
Author: Alex Balgavy <alexander.balgavy@spaceapplications.com>
Date: Tue, 23 Apr 2024 15:34:22 +0200
emacs: add org export backends
Diffstat:
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/emacs/config.org b/emacs/config.org
@@ -1572,7 +1572,7 @@ Install Org and require additional components that I use.
(org-link-elisp-confirm-function #'y-or-n-p)
(org-link-elisp-skip-confirm-regexp "^org-noter$")
(org-clock-sound (concat user-emacs-directory "notification.wav"))
- (org-export-backends '(ascii html icalendar latex md odt org pandoc))
+ (org-export-backends '(ascii html icalendar latex md odt org pandoc confluence jira))
(org-catch-invisible-edits 'show-and-error
"Sometimes when text is folded away, I might accidentally edit text inside of it. This option prevents that. I wanted to do 'smart', but that has a 'fixme' so it might change in the future...Instead, show what's being edited, but don't perform the edit.")
(org-src-tab-acts-natively t "a tab in a code block indents the code as it should")
@@ -2753,14 +2753,21 @@ Displays in the header-line the Org heading for the node that’s at the top of
*** el-easydraw
Lets you draw stuff in org mode documents.
-#+begin_src emacs-lisp
+#+begin_src emacs-lisp :tangle no
(za/package-vc-install :repo "misohena/el-easydraw" :name "edraw")
(with-eval-after-load 'org
(require 'edraw-org)
(edraw-org-setup-default)
(bind-key "C-c q c" #'edraw-color-picker-insert-color))
#+end_src
-
+*** ox-jira
+#+begin_src emacs-lisp
+ (use-package ox-jira)
+#+end_src
+*** org-confluence
+#+begin_src emacs-lisp
+ (require 'ox-confluence)
+#+end_src
*** TODO the path for org-roam export and data export should be configurable, not hard-coded
** Mail mode for neomutt