0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 22:47:56 +00:00

Add Wes Hardaker's generic exporter as a contributed package

This commit is contained in:
Carsten Dominik 2009-06-20 20:53:03 +02:00
parent 6525cc622f
commit daa2800ff3
5 changed files with 1248 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2009-06-20 Carsten Dominik <carsten.dominik@gmail.com>
* README: List new file org-export-generic.el
* lisp/org-export-generic.el: New file.
2009-05-10 Carsten Dominik <carsten.dominik@gmail.com>
* lisp/org-exp-blocks.el (org-export-blocks-format-ditaa)

View file

@ -23,7 +23,7 @@ org-eval.el --- The <lisp> tag, adapted from Muse
org-eval-light.el --- Evaluate in-buffer code on demand
org-expiry.el --- Expiry mechanism for Org entries
org-exp-bibtex.el --- Export citations to LaTeX and HTML
org-indent.el --- Dynamic outline indentation (does not really work)
org-export-generic.el --- Export framework for configurable backends
org-interactive-query.el --- Interactive modification of tags query
org-jira.el --- Add a jira:ticket protocol to Org
org-mairix.el --- Hook mairix search into Org for different MUAs

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,9 @@
2009-06-20 Carsten Dominik <carsten.dominik@gmail.com>
* org-exp.el (org-export-generic): Autoload the generic exporter
function.
(org-export): Implement the `g' key for the generic exporter.
2009-06-19 Carsten Dominik <carsten.dominik@gmail.com>
* org-table.el (orgtbl-setup): Add a binding for `S-iso-lefttab',

View file

@ -40,7 +40,7 @@
(declare-function org-infojs-options-inbuffer-template "org-jsinfo" ())
(declare-function org-export-htmlize-region-for-paste "org-html" (beg end))
(declare-function htmlize-buffer "htmlize" (&optional buffer))
(autoload 'org-export-generic "org-export-generic" "Export using the generic exporter" t)
(defgroup org-export nil
"Options for exporting org-listings."
:tag "Org Export"
@ -800,6 +800,7 @@ value of `org-export-run-in-background'."
\[V] export as DocBook, process to PDF, and open the resulting PDF document
\[x] export as XOXO
\[g] export using Wes Hardaker's generic exporter
\[i] export current file as iCalendar file
\[I] export all agenda files as iCalendar files
@ -817,6 +818,7 @@ value of `org-export-run-in-background'."
(?H org-export-as-html-to-buffer nil)
(?R org-export-region-as-html nil)
(?x org-export-as-xoxo t)
(?g org-export-generic t)
(?D org-export-as-docbook t)
(?V org-export-as-docbook-pdf-and-open t)
(?l org-export-as-latex t)