Org-mode Import/Export Tools
This page lists the various conversion tools that have been written to export Org-mode data and import external data into the Org-mode system.
Table of Contents
Org-mode Export Tools
- From Org-mode to remind by Bastien Guerry.
- From Org-mode to Freemind by Marco Vezzoli, this is available in the contrib directory of the distribution.
Org-mode Import Tools
- From Palm TODO database to Orgmode. This Translator was written by Olaf Dietsche.
- From Remind to Org by Detlef Steuer.
- From OmniFocus to Org by Magnus Henoch.
- From TaskPaper to Org by Carsten Dominik. A quite complete
translation can be achieved by a compact Perl program:
#!/usr/bin/perl /^(\t*)-(.*?)((@\w+ *)*)$/; @u=grep{$_ ne'@done'}(@t=split/ +/,$3); @v=@u?('',@u,''):(); $t{$_}++for@u; $_="*"x(2+length$1).(@t==@u?" TODO":" DONE").$2.join(":",@v)."\n"if$&; s/^\w.*:\s*$/* $&/; END{printf "* Setup\n#+TAGS: %s\n",join' ',keys%t}
This program is quite unreadable because it resulted from a contest for the most compact translator - but it works very well anyway.
- From ODT to Org, by Jose Maria Alkala.
Bi-directional
Unfortunately nothing so far.