Fix typo
[worg.git] / org-translators.org
blob8ddcb56961fb604b6e31a491be0475bf08594625
1 #+TITLE:      Org-mode Import/Export Tools
2 #+AUTHOR:     Worg people
3 #+EMAIL:      mdl AT imapmail DOT org
4 #+OPTIONS:    H:3 num:nil toc:t \n:nil ::t |:t ^:t -:t f:t *:t tex:t d:(HIDE) tags:not-in-toc
5 #+STARTUP:    align fold nodlcheck hidestars oddeven lognotestate
6 #+SEQ_TODO:   TODO(t) INPROGRESS(i) WAITING(w@) | DONE(d) CANCELED(c@)
7 #+TAGS:       Write(w) Update(u) Fix(f) Check(c)
8 #+LANGUAGE:   en
9 #+PRIORITIES: A C B
10 #+CATEGORY:   worg
12 # This file is the default header for new Org files in Worg.  Feel free
13 # to tailor it to your needs.
15 [[file:index.org][{Back to Worg's index}]]
17 This page lists the various conversion tools that have been written to
18 export Org-mode data and import external data into the Org-mode system.
20 * Org-mode Export Tools
22   - [[https://www.drupal.org/node/1977240][From Org-mode to Drupal]] by [[file:users/davidam.org][David Arroyo Menéndez]].
24   - [[http://www.cognition.ens.fr/~guerry/u/org2rem.el][From Org-mode to remind]] by [[http://www.cognition.ens.fr/~guerry/][Bastien Guerry]].
25     
26   - From Org-mode to Freemind by Marco Vezzoli, this is available in
27     the contrib directory of the distribution.
29   - From Org-mode to [[http://en.wikipedia.org/wiki/ICalendar][ICal]]endar applications:
31     - there are an export tool already implemented in org mode, is
32       [[http://orgmode.org/manual/iCalendar-export.html#iCalendar-export][explained at the org manual]].
34     - For Google users, read [[file:org-tutorials/org-google-sync.org][this tutorial]]. 
36 * Org-mode Import Tools
38   - [[http://www.olafdietsche.de/palm/palm2orgmode.pl][From Palm TODO database to Orgmode]].  This Translator was
39     written by [[http://www.olafdietsche.de/][Olaf Dietsche]].
41   - From [[http://thread.gmane.org/gmane.emacs.orgmode/5073][Remind to Org]] by Detlef Steuer.
43   - From [[http://bitbucket.org/legoscia/of2org][OmniFocus to Org]] by Magnus Henoch.
45   - From [[http://www.hogbaysoftware.com/products/taskpaper][TaskPaper]] to Org by Carsten Dominik.  A quite complete
46     translation can be achieved by a compact Perl program:
48     #+begin_src perl
49       #!/usr/bin/perl
50       /^(\t*)-(.*?)((@\w+ *)*)$/;
51       @u=grep{$_ ne'@done'}(@t=split/ +/,$3);
52       @v=@u?('',@u,''):();
53       $t{$_}++for@u;
54       $_="*"x(2+length$1).(@t==@u?" TODO":" DONE").$2.join(":",@v)."\n"if$&;
55       s/^\w.*:\s*$/* $&/;
56       END{printf "* Setup\n#+TAGS: %s\n",join' ',keys%t}
57     #+end_src
59     This program is quite unreadable because it resulted from a
60     [[http://thread.gmane.org/gmane.emacs.orgmode/6224/focus%3D6266][contest for the most compact translator]] - but it works very well
61     anyway.
63   - From [[https://bitbucket.org/josemaria.alkala/odt2org/wiki/Home][ODT to Org]], by Jose Maria Alkala.
65   - From ICalendar to Org. There are some tools and documentation related:
67     - There is a mention of some tools at the [[file:org-tools/index.org][org-tools]] section, [[file:org-tools/index.org::*ical2org.awk%20-%20convert%20ics%20files%20to%20Org][here]].
69     - For Google users, see [[file:org-tutorials/org-google-sync.org::*From%20Google%20Calendar%20into%20org%20using%20.ics%20files][this]].
71 * Bi-directional
72    
73   - Google Calendar :: There is a method for synching. Read [[file:org-tutorials/org-google-sync.org][this tutorial]].
74