Install the Lennart Borgman's freemind exporter

This commit is contained in:
Carsten Dominik 2009-10-27 16:28:03 +01:00
parent dbe8c00c72
commit 01f01c52c9
4 changed files with 1168 additions and 4 deletions

View File

@ -29,8 +29,7 @@ infodir = $(prefix)/share/info
# Using emacs in batch mode.
BATCH=$(EMACS) -batch -q -no-site-file -eval \
"(progn (add-to-list (quote load-path) \"$(lispdir)\") \
(add-to-list (quote load-path) (expand-file-name \"./lisp/\")))"
"(progn (add-to-list (quote load-path) \"$(lispdir)\") (add-to-list (quote load-path) (expand-file-name \"./lisp/\")))"
# Specify the byte-compiler for compiling org-mode files
ELC= $(BATCH) -f batch-byte-compile
@ -76,6 +75,7 @@ LISPF = org.el \
org-faces.el \
org-feed.el \
org-footnote.el \
org-freemind.el \
org-gnus.el \
org-habit.el \
org-html.el \
@ -350,8 +350,10 @@ lisp/org-docbook.elc: lisp/org.el lisp/org-exp.el
lisp/org-faces.elc: lisp/org-macs.el lisp/org-compat.el
lisp/org-feed.elc: lisp/org.el
lisp/org-footnotes.elc: lisp/org-macs.el lisp/org-compat.el
lisp/org-freemind.elc: lisp/org.el
lisp/org-gnus.elc: lisp/org.el
lisp/org-html.elc: lisp/org-exp.el
lisp/org-habit.elc: lisp/org.el lisp/org-agenda.el
lisp/org-icalendar.elc: lisp/org-exp.el
lisp/org-id.elc: lisp/org.el
lisp/org-indent.elc: lisp/org.el lisp/org-macs.el lisp/org-compat.el

View File

@ -337,6 +337,7 @@ Exporting
* HTML export:: Exporting to HTML
* LaTeX and PDF export:: Exporting to La@TeX{}, and processing to PDF
* DocBook export:: Exporting to DocBook
* Freemind export:: Exporting to Freemind mind maps
* XOXO export:: Exporting to XOXO
* iCalendar export:: Exporting in iCalendar format
@ -8755,6 +8756,7 @@ enabled (default in Emacs 23).
* HTML export:: Exporting to HTML
* LaTeX and PDF export:: Exporting to La@TeX{}, and processing to PDF
* DocBook export:: Exporting to DocBook
* Freemind export:: Exporting to Freemind mind maps
* XOXO export:: Exporting to XOXO
* iCalendar export:: Exporting in iCalendar format
@end menu
@ -9514,7 +9516,7 @@ settings for @code{\includegraphics} and @code{wrapfigure}.
If you need references to a label created in this way, write
@samp{\ref@{fig:SED-HR4049@}} just like in La@TeX{}.
@node DocBook export, XOXO export, LaTeX and PDF export, Exporting
@node DocBook export, Freemind export, LaTeX and PDF export, Exporting
@section DocBook export
@cindex DocBook export
@cindex PDF export
@ -9707,7 +9709,20 @@ special characters included in XHTML entities:
"
@end example
@node XOXO export, iCalendar export, DocBook export, Exporting
@node Freemind export, XOXO export, DocBook export, Exporting
@section Freemind export
@cindex Freemind export
@cindex mind map
The freemind exporter was written by Lennart Borgman.
@table @kbd
@kindex C-c C-e m
@item C-c C-e m
Export as Freemind mind map @file{myfile.mm}.
@end table
@node XOXO export, iCalendar export, Freemind export, Exporting
@section XOXO export
@cindex XOXO export

View File

@ -849,6 +849,8 @@ value of `org-export-run-in-background'."
\[D] export as DocBook
\[V] export as DocBook, process to PDF, and open the resulting PDF document
\[m] export as Freemind mind map
\[x] export as XOXO
\[g] export using Wes Hardaker's generic exporter
@ -871,6 +873,7 @@ value of `org-export-run-in-background'."
(?g org-export-generic t)
(?D org-export-as-docbook t)
(?V org-export-as-docbook-pdf-and-open t)
(?m org-export-as-freemind t)
(?l org-export-as-latex t)
(?p org-export-as-pdf t)
(?d org-export-as-pdf-and-open t)
@ -2899,3 +2902,4 @@ The depends on the variable `org-export-copy-to-kill'."
;; arch-tag: 65985fe9-095c-49c7-a7b6-cb4ee15c0a95
;;; org-exp.el ends here

1143
lisp/org-freemind.el Normal file

File diff suppressed because it is too large Load Diff