1 #+TITLE: Org-mode Import/Export Tools
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)
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 - From Org-mode to Freemind by Marco Vezzoli, this is available in
25 the contrib directory of the distribution.
27 - From Org-mode to [[https://en.wikipedia.org/wiki/ICalendar][ICal]]endar applications:
29 - there are an export tool already implemented in org mode, is
30 [[https://orgmode.org/manual/iCalendar-export.html#iCalendar-export][explained at the org manual]].
32 - For Google users, read [[file:org-tutorials/org-google-sync.org][this tutorial]].
34 * Org-mode Import Tools
36 - [[http://www.olafdietsche.de/palm/palm2orgmode.pl][From Palm TODO database to Orgmode]]. This Translator was
37 written by [[http://www.olafdietsche.de/][Olaf Dietsche]].
39 - From [[https://orgmode.org/list/20080112175502.0fb06b66@linux.site][Remind to Org]] by Detlef Steuer.
41 - From [[http://bitbucket.org/legoscia/of2org][OmniFocus to Org]] by Magnus Henoch.
43 - From [[http://www.hogbaysoftware.com/products/taskpaper][TaskPaper]] to Org by Carsten Dominik. A quite complete
44 translation can be achieved by a compact Perl program:
48 /^(\t*)-(.*?)((@\w+ *)*)$/;
49 @u=grep{$_ ne'@done'}(@t=split/ +/,$3);
52 $_="*"x(2+length$1).(@t==@u?" TODO":" DONE").$2.join(":",@v)."\n"if$&;
54 END{printf "* Setup\n#+TAGS: %s\n",join' ',keys%t}
57 This program is quite unreadable because it resulted from a
58 [[https://orgmode.org/list/0277B507-1486-4172-B1C6-1B73B84148DD@science.uva.nl][contest for the most compact translator]] - but it works very well
61 - From [[https://bitbucket.org/josemaria.alkala/odt2org/wiki/Home][ODT to Org]], by Jose Maria Alkala.
63 - From ICalendar to Org. There are some tools and documentation related:
65 - 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]].
67 - For Google users, see [[file:org-tutorials/org-google-sync.org::*From%20Google%20Calendar%20into%20org%20using%20.ics%20files][this]].
69 - For a command line tool that converts files, URLs (e.g., Google
70 Calendar), email attachments, and other sources into org-mode
71 events, see [[https://github.com/rjhorniii/ical2org][this]]. It can integrate with crontab, systemd,
72 etc. for automatic updating. An example of [[https://www.djcbsoftware.nl/code/mu/mu4e.html][mu4e]] integration for
73 processing email attachments with ics content is shown.
77 - Google Calendar :: There is a method for synching. Read [[file:org-tutorials/org-google-sync.org][this tutorial]].