I would like to suggest the following patch so that I can easily export to Confluence wiki format using the usual org-mode export mechanism. Given the trivial change, I don't think I need to sign any papers. However I have already signed copyright forms with FSF years ago. #+begin_src diff diff --git a/contrib/lisp/ox-confluence.el b/contrib/lisp/ox-confluence.el index b521b247..c12d1a05 100644 --- a/contrib/lisp/ox-confluence.el +++ b/contrib/lisp/ox-confluence.el @@ -60,7 +60,10 @@ (template . org-confluence-template) (timestamp . org-confluence-timestamp) (underline . org-confluence-underline) - (verbatim . org-confluence-verbatim))) + (verbatim . org-confluence-verbatim)) + :menu-entry + '(?f "Export to Confluence" + ((?f "As Confluence buffer" org-confluence-export-as-confluence)))) (defcustom org-confluence-lang-alist '(("sh" . "bash")) #+end_src