Re: Help requested: Support for basic Org mode support in tools outside of Emacs

2021-08-03 Thread David Masterson
Karl Voit  writes:

> Hi,
>
> I'm collecting information on basic Org mode support in tools that
> are not Emacs.
>
> I already have: GitHub, GitLab (exactly like GitHub), OrgModeWeb,
> Orgzly, Orgro, Emacs, vim-orgmode.

* BeOrg (http://beorg.app)
* Organice (http://organice.200ok.ch)

-- 
David Masterson



Re: Bug: org-agenda-highlight-todo: Symbol’s function definition is void: string-empty-p [9.4.6 (9.4.6-11-g1ee52c-elpa @ /home/vmg/.emacs.d/elpa/org-20210726/)]

2021-08-03 Thread Tim Cross


Вячеслав Гришин  writes:

> Remember to cover the basics, that is, what you expected to happen and
> what in fact did happen.  You don't know how to make a good report?  See
>
>  https://orgmode.org/manual/Feedback.html#Feedback
>
> Your bug report will be posted to the Org mailing list.
> 
>
>   1.
>
>  I updated orgmode package and trying to org-agenda-list, as usual. But 
> failed with mistake  — org-agenda-list was empty.
>  After investigation, I took advice to put this:
>
>   ;; NB If you want to use this library, it's almost always correct to 
> use:
>   (eval-when-compile (require 'subr-x))
>
>  in the beginning of .emacs. And it worked. Org-agenda-list was fine.

I suspect that adding that line has actually hidden a larger problem.
The above line is essentially telling emacs to load the subr-x package
when your compiling an emacs-lisp file. However, your not compiling your
.emacs file, so this will not have any effect unless your compiling your
.emacs file. It is rarely worthwhile compiling your init file. Far
better off to keep your init file relatively small and pushing
complex/large configuration stuff into separate files which can be
compiled. There are a number of complications you often need to deal
with when compiling your init file and dealing with these often adds
enough complexity to outweigh the any benefits to startup time, which
are typically very small anyway.  

The symptoms you are seeing are frequently seen with a broken org
install. This can easily happen if you attempt to upgrade org when you
already have org functions loaded. Basic problem is that you end up with
a broken mixed installation with parts from the old version and parts
from the upgraded version.

Note that if the issue was as you described, many people would be
experiencing this bug, but they aren't. This suggests the problem is
local to your setup.  

I would remove the upgraded org package and try re-installing. However,
it is really important to make sure your .emacs does not call any org
functions because this will load org during startup and then when you
attempt to upgrade the package, you will get the same issue. This may
require some re-organisation of your .emacs file - possibly wrapping org
related code in an eval-after-load or using something like use-package
etc.

An easy way to verify which avoids large refactoring of your init file
would be to comment out any org related configuration from your init
file, restart emacs. upgrade org, uncomment what you commented and then
restart emacs. 

>
>  The org-agenda-highlight-todo function (org-agenda.el file) uses the
>  string-empty-p function from the emacs-lisp/subr-x.el module, but
>  somewhere is not done (require ' subr-x), so when calling the
>  org-agenda-highlight-todo function, string-empty-p is not defined,
>  which leads to an error — org-agenda-highlight-todo: Symbol’s function
>  definition is void: string-empty-p
>
>   2.
>
>  For checking I called the emacs -Q and put in it scratch:
>   (string-empty-p "test")
>   (require 'subr-x)
>  Then I executed the command
>   C-x C-e
>  on
>   (require 'subr-x)
>  output was
>   Debugger entered--Lisp error: (void-function string-empty-p)
>   (string-empty-p "test")

When you did C-x C-e, either you evaluated the first sexp or it tried to
evaluate all sexps in the scratch buffer, calling string-empty-p first
and before require 'subr-x, so the library was not yet loaded and the
function was not found. the require needs to be before functions from
the required library are called. 



Re: Help requested: Support for basic Org mode support in tools outside of Emacs

2021-08-03 Thread Tom Gillespie
Hi Karl,
   Great initiative. For many of the things in the table you will
probably want to link to the underlying library For example for github
and gitlab there is https://github.com/wallyqs/org-ruby (which I have
been trying to find time to submit fixes to). I've linked a couple
relevant threads and repos. Best!
Tom

python https://github.com/novoid/Memacs
python https://github.com/karlicoss/orgparse
python https://github.com/bjonnh/PyOrgMode
racket https://github.com/tgbugs/laundry/tree/next
racket https://github.com/jeapostrophe/org-mode
racket https://github.com/antoineB/org-mode
See https://github.com/tgbugs/laundry/blob/next/laundry/cursed.org for
an org file that github fails to render
clojure https://github.com/200ok-ch/org-parser/blob/master/resources/org.ebnf

https://orgmode.org/list/ca+g3_pobab1qx1zv8q9sjfh4khuhvmanxp3xo7__6eosdxk...@mail.gmail.com/
https://orgmode.org/list/ca+g3_pnj6pekqv+twfkwbd778xhw9wsfx+kjjhjsoreplhu...@mail.gmail.com/

On Tue, Aug 3, 2021 at 11:46 AM Greg Minshall  wrote:
>
> Karl,
>
> orgtbl-query is a script for querying tables in .org files.  it doesn't
> do any special text formatting.
>
> https://gitlab.com/minshall/orqtbl-query
>
> cheers, Greg
>



Re: Help requested: Support for basic Org mode support in tools outside of Emacs

2021-08-03 Thread Greg Minshall
Karl,

orgtbl-query is a script for querying tables in .org files.  it doesn't
do any special text formatting.

https://gitlab.com/minshall/orqtbl-query

cheers, Greg



Recursive publish bug?

2021-08-03 Thread Felix E. Klee
I’m using version 9.4.6.  See below what happens when I `org-publish`
to a remote server.  The subdirectory structure is not properly
mapped.  Is this a bug?

On my system:

project
  .dir-locals.el
  index.org
  images
a.jpg
  subdir
index.org
images
  b.jpg

Result on the server:

project
  index.html
  images
a.jpg
b.jpg
  subdir
index.html

Contents of `.dir-locals` (manually anonymized):

((org-mode
  . ((org-publish-project-alist
  . (("pages"
  :html-doctype "html5"
  :html-html5-fancy t
  :html-head-include-scripts nil
  :html-head-include-default-style nil
  :base-directory "/my/local/computer/project"
  :base-extension "org"
  :recursive t
  :publishing-directory
  "/plink:u...@my-server.example.com:/remote/project/"
  :publishing-function org-html-publish-to-html)
 ("static"
  :base-directory "."
  :base-extension "css\\|txt\\|jpg\\|gif\\|png"
  :recursive t
  :publishing-directory
  "/plink:u...@my-server.example.com:/remote/project/"
  :exclude "/hires"
  :publishing-function org-publish-attachment)
 ("all" :components ("pages" "static")))




Re: Help requested: Support for basic Org mode support in tools outside of Emacs

2021-08-03 Thread Jens Neuhalfen
Hi

on iOS the (really amazing) git client „working copy“ has support for org 
rendering 

Jens

> On 3. Aug 2021, at 11:32, Karl Voit  wrote:
> 
> Hi,
> 
> I'm collecting information on basic Org mode support in tools that
> are not Emacs.
> 
> I already have: GitHub, GitLab (exactly like GitHub), OrgModeWeb,
> Orgzly, Orgro, Emacs, vim-orgmode.
> 
> What I need is information on much more tools.
> 
> I have set up a syntax checking file on
> https://github.com/novoid/github-orgmode-tests/blob/master/orgmode_support.org
> which also contains my current compatibility table for the most
> basic set that makes sense as a Markdown-pendant outside of Emacs
> according to my subjective judgement on Org mode at the bottom.
> 
> My focus is on tools that - at least - offer text formatting syntax
> highlighting for *bold* /italic/ and so forth. The rest could be
> "works as text but has no special support for outlining and more".
> 
> The goals is to emphasize that there are much more tools that allow
> for viewing and/or editing data in Org mode syntax.
> 
> Since I don't have an iPhone, iOS-based tools supporting Org mode
> syntax is very much appreciated.
> 
> Please do hand in more lines for the table either here, via email or
> as a GitHub pull request.
> 
> Thank you!
> 
> -- 
> get mail|git|SVN|photos|postings|SMS|phonecalls|RSS|CSV|XML into Org-mode:
>> get Memacs from https://github.com/novoid/Memacs <
> Personal Information Management > http://Karl-Voit.at/tags/pim/
> Emacs-related > http://Karl-Voit.at/tags/emacs/
> 
> 



Re: Help requested: Support for basic Org mode support in tools outside of Emacs

2021-08-03 Thread Robert Horn


Karl Voit writes:

> I'm collecting information on basic Org mode support in tools that
> are not Emacs.
>

If email integration is considered support, you can add

mu (searching for mu4e will eliminate most of the false positives for
"mu" when searching)
notmuch

They both have org-mode integrations.  E.g., create an org-mode task
from within the email reader, with link back to the email.

-- 
Robert Horn
rjh...@alum.mit.edu



Re: Help requested: Support for basic Org mode support in tools outside of Emacs

2021-08-03 Thread Kristian Grönberg
Hi Karl,

‐‐‐ Original Message ‐‐‐

On Tuesday, August 3rd, 2021 at 12:14, Karl Voit  wrote:

> Hi,
> 

> I'm collecting information on basic Org mode support in tools that are not 
> Emacs.
> 

> I already have: GitHub, GitLab (exactly like GitHub), OrgModeWeb,
> 

> Orgzly, Orgro, Emacs, vim-orgmode.

Beorg for iOS (https://beorgapp.com) , would be one.


signature.asc
Description: OpenPGP digital signature


Re: Bug: Percentage in caption (even escaped) does not work in LaTeX export

2021-08-03 Thread Eric S Fraga
On Friday, 30 Jul 2021 at 15:00, Charest, Luc wrote:
>I simplified the problem down to :
>
> #+CAPTION: Org Mode works 99.99\% of the time.
> #+BEGIN_SRC -n
>
> // this is only a proof of concept
> #+END_SRC
>
> As soon as I put the percentage sign in the caption, the LaTeX export backend 
> fails with this message :
>
> org-latex-src-block: Not enough arguments for format string

whereas for me it fails because no language was given for the src block,
i.e. different error message in the latex compilation.  What happens if
you do specify a language?

If I specify a language, the export is fine with % unescaped, by the
way.

-- 
: Eric S Fraga via Emacs 28.0.50, Org release_9.4.6-607-g185706
: Latest paper written in org: https://arxiv.org/abs/2106.05096



Re: org-cite-list-bibliography-files

2021-08-03 Thread von der Malsburg, Titus


On 2021-07-28 Wed 15:56, John Kitchin wrote:
> Could it be related to the variable org-mouse-1-follows-link?

This variable is non-nil for me and clicking on ordinary org links works fine 
in my setup.

I also tested it with emacs -Q followed by loading org via straight.el and 
(require 'org), but no luck.

  Titus

>
> Today I added mouse-1 to the keymap that org-ref-cite uses so that might
> also resolve it for you.
>
> John
>
> ---
> Professor John Kitchin (he/him/his)
> Doherty Hall A207F
> Department of Chemical Engineering
> Carnegie Mellon University
> Pittsburgh, PA 15213
> 412-268-7803
> @johnkitchin
> http://kitchingroup.cheme.cmu.edu
>
>
>
> On Wed, Jul 28, 2021 at 9:13 AM Bruce D'Arcus  wrote:
>
>> Titus' second question got lost a bit, but does anyone have an answer?
>>
>> I have the same issue, but was thinking clicking should run
>> org-open-at-point.
>>
>> I know some other people do get clickable links, so am wondering if
>> it's a config issue?
>>
>> On Sun, Jul 25, 2021 at 10:47 AM Titus von der Malsburg
>>  wrote:
>>
>> > 2. The oc-basic processor makes citations look like clickable links
>> (blue, underlined, mouse pointer changes to finger), but when I click on
>> them, nothing happens.  I can only follow a references via
>> `org-open-at-point'.  It would be good to make citations clickable.  I also
>> suggest allowing users to follow links via C-c C-c which currently doesn’t
>> do anything on citations.  The other obvious action that C-c C-c could
>> trigger would be `org-cite-insert'.  Not sure what’s better.
>>
>>


-- 
Jun.-Prof. Dr. Titus von der Malsburg
Psycholinguistics and Cognitive Modeling
Institute of Linguistics, University of Stuttgart
https://tmalsburg.github.io



[PATCH] minor typo fix in org-tutorials/org-protocol-custom-handler.org

2021-08-03 Thread Atlas Cove
From: Atlas48 

As it says, this is a minor fix to worg.

---
 org-tutorials/org-protocol-custom-handler.org | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/org-tutorials/org-protocol-custom-handler.org 
b/org-tutorials/org-protocol-custom-handler.org
index 729ff30b..1e56102f 100644
--- a/org-tutorials/org-protocol-custom-handler.org
+++ b/org-tutorials/org-protocol-custom-handler.org
@@ -235,7 +235,7 @@ nil)

 * General remarks

-  emacsclient compresses double and tripple slashes to one. That's why it
+  emacsclient compresses double and triple slashes to one. That's why it
   doesn't really matter how many slashes succeed the scheme part of the URL,
   also known as /protocol/.

--
2.32.0




[BUG] Second item of `org-agenda-timerange-leaders' cannot be a function [9.4.6 (9.4.6-gf70e36 @ /home/viz/lib/emacs/straight/build/org/)]

2021-08-03 Thread General discussions about Org-mode.
Looking at the definition of `org-agenda-timerange-leaders' suggests
that the second item of the list can be a function.

    (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  "Text preceding timerange entries in the agenda view.
    This is a list with two strings.  The first applies when the range
    is entirely on one day.  The second applies if the range spans several days.
    The strings may have two \"%d\" format specifiers which will be filled
    with the sequence number of the days, and the total number of days in the
    range, respectively."
  :group 'org-agenda-line-format
  :type '(list
  (string :tag "Deadline today   ")
  (choice :tag "Deadline relative"
  (string :tag "Format string")
  (function
                ^^^

However, setting it to a function simply yields a type error since
`format' expects a string.  This has been a problem ever since the
option was introduced in the commit ea258dbdb.  

It would be nice if org could accept a function, as one would expect 
from the definition of the concerned option.  The function would accept two 
arguments and return a format-string or a _formatted_ string?

Regards.

P.S. Please add me to CCs since I don't follow the mailing list.




Bug: Percentage in caption (even escaped) does not work in LaTeX export

2021-08-03 Thread Charest, Luc

Hello,

   I simplified the problem down to :

#+CAPTION: Org Mode works 99.99\% of the time.
#+BEGIN_SRC -n
// this is only a proof of concept
#+END_SRC

As soon as I put the percentage sign in the caption, the LaTeX export backend 
fails with this message :

org-latex-src-block: Not enough arguments for format string

I tried "%", "\%", "\\%", "%%"... nothing works !

If I get it wrong, sorry but please update the documentation accordingly, as I 
found nothing in the specs regarding this matter specifically.

My versions :
Emacs  : GNU Emacs 26.2 (build 1, x86_64-w64-mingw32)
of 2019-04-13
Package: Org mode version 9.4.6 (9.4.6-4-g093c94-elpa)

Thanks !

[http://www.hydroquebec.com/images/logo-hqp-courriel.gif]

Luc Charest
Conseiller Optimisation I
Optimisation Modélisation Mathématique
Direction Production et Exploitation
Hydro-Québec Production
Édifice Jean-Lesage
75, boulevard René-Lévesque Ouest, 9e étage
Montréal (Québec) H2Z 1A4
Tél. : 514 289-2211,7049
Interne0-289-7049
www.hydroquebec.com
[http://www.hydroquebec.com/images/2019g289-signature-courriel-bandeau.gif]


Bug: org-agenda-highlight-todo: Symbol’s function definition is void: string-empty-p [9.4.6 (9.4.6-11-g1ee52c-elpa @ /home/vmg/.emacs.d/elpa/org-20210726/)]

2021-08-03 Thread Вячеслав Гришин
Remember to cover the basics, that is, what you expected to happen and
what in fact did happen.  You don't know how to make a good report?  See

 https://orgmode.org/manual/Feedback.html#Feedback

Your bug report will be posted to the Org mailing list.


1.

 I updated orgmode package and trying to org-agenda-list, as usual. But failed 
with mistake  — org-agenda-list was empty.
 After investigation, I took advice to put this:

;; NB If you want to use this library, it's almost always correct to 
use:
(eval-when-compile (require 'subr-x))

 in the beginning of .emacs. And it worked. Org-agenda-list was fine.

 The org-agenda-highlight-todo function (org-agenda.el file) uses the
 string-empty-p function from the emacs-lisp/subr-x.el module, but
 somewhere is not done (require ' subr-x), so when calling the
 org-agenda-highlight-todo function, string-empty-p is not defined,
 which leads to an error — org-agenda-highlight-todo: Symbol’s function
 definition is void: string-empty-p

2.

 For checking I called the emacs -Q and put in it scratch:
(string-empty-p "test")
(require 'subr-x)
 Then I executed the command
C-x C-e
 on
(require 'subr-x)
 output was
Debugger entered--Lisp error: (void-function string-empty-p)
(string-empty-p "test")
eval((string-empty-p "test") nil)
elisp--eval-last-sexp(nil)
eval-last-sexp(nil)
funcall-interactively(eval-last-sexp nil)
call-interactively(eval-last-sexp nil nil)
command-execute(eval-last-sexp)


Emacs  : GNU Emacs 26.3 (build 2, x86_64-pc-linux-gnu, GTK+ Version 3.24.14)
 of 2020-03-26, modified by Debian
Package: Org mode version 9.4.6 (9.4.6-11-g1ee52c-elpa @ 
/home/vmg/.emacs.d/elpa/org-20210726/)

current state:
==
(setq
 org-src-mode-hook '(org-src-babel-configure-edit-buffer 
org-src-mode-configure-edit-buffer)
 org-link-shell-confirm-function 'yes-or-no-p
 org-metadown-hook '(org-babel-pop-to-session-maybe)
 org-clock-out-hook '(org-clock-remove-empty-clock-drawer)
 org-agenda-files '("~/Общедоступные/Процесс/Обеспечение.org" 
"~/Общедоступные/Процесс/Механизатор.org"
"~/Общедоступные/Процесс/Токарь.org")
 org-mode-hook '(#[0 "\300\301\302\303\304$\207" [add-hook 
change-major-mode-hook org-show-all append local] 5]
 #[0 "\300\301\302\303\304$\207"
   [add-hook change-major-mode-hook org-babel-show-result-all 
append local] 5]
 org-babel-result-hide-spec org-babel-hide-all-hashes)
 org-archive-hook '(org-attach-archive-delete-maybe)
 org-confirm-elisp-link-function 'yes-or-no-p
 org-startup-with-inline-images t
 org-agenda-before-write-hook '(org-agenda-add-entry-text)
 org-metaup-hook '(org-babel-load-in-session-maybe)
 org-bibtex-headline-format-function #[257 "\300\236A\207" [:title] 3 "\n\n(fn 
ENTRY)"]
 org-babel-pre-tangle-hook '(save-buffer)
 org-tab-first-hook '(org-babel-hide-result-toggle-maybe 
org-babel-header-arg-expand)
 org-log-done 'note
 org-agenda-loop-over-headlines-in-active-region nil
 org-occur-hook '(org-first-headline-recenter)
 org-cycle-hook '(org-cycle-hide-archived-subtrees org-cycle-hide-drawers 
org-cycle-show-empty-lines
  org-optimize-window-after-visibility-change)
 org-todo-keywords '((sequence "ИСПОЛНИТЬ" "|" "ИСПОЛНЕНО" "ОТМЕНЕНО" 
"ОСТАНОВЛЕНО"))
 org-speed-command-hook '(org-speed-command-activate 
org-babel-speed-command-activate)
 org-display-remote-inline-images 'download
 org-export-before-parsing-hook '(org-attach-expand-links)
 org-confirm-shell-link-function 'yes-or-no-p
 org-link-parameters '(("attachment" :follow org-attach-follow :complete 
org-attach-complete-link)
   ("id" :follow org-id-open) ("eww" :follow org-eww-open 
:store org-eww-store-link)
   ("rmail" :follow org-rmail-open :store 
org-rmail-store-link)
   ("mhe" :follow org-mhe-open :store org-mhe-store-link)
   ("irc" :follow org-irc-visit :store org-irc-store-link 
:export org-irc-export)
   ("info" :follow org-info-open :export org-info-export 
:store org-info-store-link)
   ("gnus" :follow org-gnus-open :store org-gnus-store-link)
   ("docview" :follow org-docview-open :export 
org-docview-export :store org-docview-store-link)
   ("bibtex" :follow org-bibtex-open :store 
org-bibtex-store-link)
   ("bbdb" :follow org-bbdb-open :export org-bbdb-export 
:complete org-bbdb-complete-link :store
org-bbdb-store-link)
   ("w3m" :store org-w3m-store-link) ("file+sys") 
("file+emacs")
   ("shell" :follow org-link--open-shell)
   ("news" :follow #[514 "\301\300\302Q\"\207" ["news" 
browse-url ":"] 6 

[PATCH] ox.el: fix spanish translation for `footnotes'

2021-08-03 Thread Juan Manuel Macías
Hi,

The Spanish translation for "Footnotes" in `org-export-dictionary' is
"Nota al pie de página" ("Nota"[="Note"], in the singular form). I think
it would be more correct "Notas", in the plural form. Attached a small
patch.

Best regards,

Juan Manuel

>From 4109c6f2bc38d56b0a67c482afc3feeddfcf3084 Mon Sep 17 00:00:00 2001
From: Juan Manuel Macias 
Date: Tue, 3 Aug 2021 12:31:02 +0200
Subject: [PATCH] ox.el: fix spanish translation for `footnotes'

* lisp/ox.el (org-export-dictionary): tiny fix in spanish translation (plural instead of singular)
---
 lisp/ox.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/ox.el b/lisp/ox.el
index 16b87a7ed..418c680b0 100644
--- a/lisp/ox.el
+++ b/lisp/ox.el
@@ -5928,7 +5928,7 @@ them."
  ("da" :default "Fodnoter")
  ("de" :html "Funoten" :default "Fußnoten")
  ("eo" :default "Piednotoj")
- ("es" :ascii "Nota al pie de pagina" :html "Nota al pie de pgina" :default "Nota al pie de página")
+ ("es" :ascii "Notas al pie de pagina" :html "Notas al pie de pgina" :default "Notas al pie de página")
  ("et" :html "Allmrkused" :utf-8 "Allmärkused")
  ("fi" :default "Alaviitteet")
  ("fr" :default "Notes de bas de page")
-- 
2.32.0



Re: TMIO July Post: Introducing Citations

2021-08-03 Thread András Simonyi
Absolutely, thanks for the correction -- I meant Org's master, even
though the question was clearly about Emacs's.
best regards,
András

On Tue, 3 Aug 2021 at 12:23, Eric S Fraga  wrote:
>
> On Tuesday,  3 Aug 2021 at 12:10, András Simonyi wrote:
> > Most of the functionality described in the piece is already in the
> > master branch.
>
> No, not quite.  These latest updates are in the master branch of org
> mode but they have not yet been incorporate into the master branch of
> Emacs itself.
>
> --
> : Eric S Fraga via Emacs 28.0.50, Org release_9.4.6-607-g185706
> : Latest paper written in org: https://arxiv.org/abs/2106.05096



Re: TMIO July Post: Introducing Citations

2021-08-03 Thread Eric S Fraga
On Tuesday,  3 Aug 2021 at 12:10, András Simonyi wrote:
> Most of the functionality described in the piece is already in the
> master branch.

No, not quite.  These latest updates are in the master branch of org
mode but they have not yet been incorporate into the master branch of
Emacs itself. 

-- 
: Eric S Fraga via Emacs 28.0.50, Org release_9.4.6-607-g185706
: Latest paper written in org: https://arxiv.org/abs/2106.05096



Re: TMIO July Post: Introducing Citations

2021-08-03 Thread András Simonyi
Most of the functionality described in the piece is already in the
master branch.

best regards,
András

On Mon, 2 Aug 2021 at 12:36, Rudolf Adamkovič  wrote:
>
> Does anyone know when this might land in Emacs’ master branch?



Help requested: Support for basic Org mode support in tools outside of Emacs

2021-08-03 Thread Karl Voit
Hi,

I'm collecting information on basic Org mode support in tools that
are not Emacs.

I already have: GitHub, GitLab (exactly like GitHub), OrgModeWeb,
Orgzly, Orgro, Emacs, vim-orgmode.

What I need is information on much more tools.

I have set up a syntax checking file on
https://github.com/novoid/github-orgmode-tests/blob/master/orgmode_support.org
which also contains my current compatibility table for the most
basic set that makes sense as a Markdown-pendant outside of Emacs
according to my subjective judgement on Org mode at the bottom.

My focus is on tools that - at least - offer text formatting syntax
highlighting for *bold* /italic/ and so forth. The rest could be
"works as text but has no special support for outlining and more".

The goals is to emphasize that there are much more tools that allow
for viewing and/or editing data in Org mode syntax.

Since I don't have an iPhone, iOS-based tools supporting Org mode
syntax is very much appreciated.

Please do hand in more lines for the table either here, via email or
as a GitHub pull request.

Thank you!

-- 
get mail|git|SVN|photos|postings|SMS|phonecalls|RSS|CSV|XML into Org-mode:
   > get Memacs from https://github.com/novoid/Memacs <
Personal Information Management > http://Karl-Voit.at/tags/pim/
Emacs-related > http://Karl-Voit.at/tags/emacs/