org-export
org-export copied to clipboard
feature request: org-export koma --infile cover_letter.org
Hello there,
I have modified this repo to compile Koma tex as such. This is of course in a new org-export-koma.el file.
(require 'find-lisp)
(defun find-and-load-file-p (dir regexp)
(let ((load-it (lambda (f)
;; (print f)
(load-file f))
))
(mapc load-it (find-lisp-find-files dir regexp))))
(find-and-load-file-p "~/.emacs.d/" "ox-koma-letter.el")
It sucks because it's load elisp from somewhere other than ~/.org-export/ The desired functionality is in the elpa package org-plus-contrib, which after installation, one can just (require 'ox-koma-letter).
I dug around in the source and can't find where packages are installed.
Do you have any suggestions how to implement this (such that you would accept a pull request)?
Regards Brian