This page lists the various translators that have been written to transform Org into some format, and to turn some format into Org.
#+begin_src perl #!/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} #+end_src
This program is quite unreadable because it resulted from a contest for the most compact translator - but it works very well anyway.
Unfortunately nothing so far.