Context
In my spare time, I've been adding very limited support for org-mode syntax in the Atom text editor for my friends that absolutely will not switch to Emacs.
Over the last few years I've found approximately 10 org syntax parsers which all focus on converting org-mode files into markdown or other file formats.
The 2 most popular parsers that I use everyday and recommend are:
Question
Outside of Emacs what other software supports org-mode syntax?
Note: I acknowledge that StackExchange platform is not really ideal for this type of question but I believe the Emacs StackExchange community would benefit from multiple well researched answers about this topic.
How to Answer this Question
Each answer should:
- Limit answer scope to a single software source, e.g. discuss pandoc or org-ruby but not both in the same answer.
- Briefly describe what software can do with org-mode file, e.g. pandoc can convert org-mode to docx, markdown and json file formats.
- Provide a simple example of using the software, e.g.
pandoc --from org --to docx -o example.docx example.org
. - List dependencies, e.g. ruby is required to use org-ruby.
- Link to official software page.