Org-mode Import/Export Tools

{Back to Worg's index}

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

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.

Documentation from the http://orgmode.org/worg/ website (either in its HTML format or in its Org format) is licensed under the GNU Free Documentation License version 1.3 or later. The code examples and css stylesheets are licensed under the GNU General Public License v3 or later.