Software:Org-mode

From HandWiki
Short description: Open source mode for GNU Emacs
Org-mode
Org-mode logo
Original author(s)Carsten Dominik
Developer(s)Carsten Dominik, Bastien Guerry, et al.
Written inEmacs Lisp
TypePersonal information management, Notetaking, Outlining, Literate programming, Reproducibility
LicenseGPL-3.0-or-later
Websiteorgmode.org

Org Mode (also: org-mode;[1] /ˈɔːrɡ md/) is a mode for document editing, formatting, and organizing within the free software text editor GNU Emacs and its derivatives, designed for notes, planning, and authoring. The name is used to encompass plain text files ("org files") that include simple marks to indicate levels of a hierarchy (such as the outline of an essay, a topic list with subtopics, nested computer code, etc.), and an editor with functions that can read the markup and manipulate hierarchy elements (expand/hide elements, move blocks of elements, check off to-do list items, etc.).

Org Mode was created by Carsten Dominik in 2003, originally to organize his own life and work,[2] and since the first release numerous other users and developers have contributed to this free software package.[3] Emacs has included Org Mode[4] as a major mode by default since 2006. Bastien Guerry is the current maintainer, in cooperation with an active development community.[5] Since its success in Emacs, some other systems now provide functions to work with org files.[6][7]

Almost orthogonally, Org Mode has functionalities aimed at executing code in various external languages; these functionalities form org-babel.[8][9]

System

The Org Mode home page explains that "at its core, Org Mode is a simple outliner for note-taking and list management"[10] The Org system author Carsten Dominik explains that "Org Mode does outlining, note-taking, hyperlinks, spreadsheets, TODO lists, project planning, GTD, HTML and LaTeX authoring, all with plain text files in Emacs."[11]

The Org system is based on plain text files with a simple markup, which makes the files very portable. The Linux Information Project explains that "Plain text is supported by nearly every application program on every operating system".[12]

The system includes a lightweight markup language for plain text files (similar in function to Markdown, reStructuredText, Textile, etc., with a different implementation), allowing lines or sections of plain text to be hierarchically divided, tagged, linked, and so on.

Functionality

This section gives some sample uses for the hierarchical display and editing of plain text.

  • To-do lists often have subtasks, and so lend themselves to a hierarchical system. Org Mode facilitates this by allowing items to be subdivided into simple steps (nested to-dos and/or checklists), and given tags and properties such as priorities and deadlines. An agenda for the items to be done this week or day can then be automatically generated from date tags.[13]
  • Plain text outlines.[14]
Org file showing simple planning for a short trip
  • Org files as interconnected pages of a personal wiki, using the markup for links.
  • Tracking bugs in a project, by storing .org files in a distributed revision control system such as Git.
  • Extensive linking features, to web pages, within the same file, to other files, to emails, and also allows defining custom links

An org-mode document can also be exported to various formats (including HTML, LaTeX, OpenDocument or plain text), these formats being used to render the structural outline in an appropriate fashion (including cross-references if needed). It can also use formatting markup (including LaTeX for mathematics), with facilities similar to those present in Markdown or LaTeX, thus offering an alternative to these tools.

Org-babel

Some of the basic features of Org-babel

Org Mode offers the ability to insert source code in the document being edited, which is automatically exported and/or executed when exporting the document; the result(s) produced by this code can be automatically fetched back in the resulting output.

This source code can be structured as reusable snippets, inserted in the source document at the place needed for logical exposition thus allowing this exposition to be independent of the structure needed by the compiler/interpreter.

Together with the markup facilities of org-mode, these two functionalities allow for

  • Literate programming, by decoupling the exposition of the functions of a program from its code structure, and
  • Reproducible research, by the creation of a consistent document consolidating exposition, original data, analyses, discussion and conclusion, in a way that can be reproduced by any reader using the same software tools.

As of June 2021, org-babel directly supports more than 70 programming languages or programmable facilities, more than 20 other tools being usable via contributed packages or drivers.[15]

Integration

Org Mode has some features to export to other formats, and other systems have some features to handle org-mode formats. Further, a full-featured text editor may have functions to handle wikis, personal contacts, email, calendars, and so on; because org-mode is simply plain text, these features could be integrated into org-mode documents as well.

From org-mode, add-on packages export to other markup format such as MediaWiki (org-export-generic, org-export), to flashcard learning systems implementing SuperMemo's algorithms (org-drill, org-learn).[16]

Outside of org-mode editors, org markup is supported by the GitLab, GitHub[17] and Gitea code repositories, the JIRA issue tracker,[18] Pandoc and others.

Export examples

Org supports exporting to a variety of formats. Below you may find examples of Org fragments exported to a number of formats. Other formats are supported by dedicated packages.

Format Structure Text attributes Lists Images and blocks

Org

* Heading
** Sub heading

Paragraphs are separated
by a blank line.

-----

Five dashes is a horizontal rule.
Simple markup produces *bold*
and /italic/ text. There's also
~code~, and other markups.

Here is a link to the
org https://orgmode.org/][homepage.
An unordered list:
+ apples
+ oranges
+ pears

An ordered list:
1. lather
2. rinse
3. repeat
file:org-mode-unicorn.png

#+begin_quote
Org blocks start with #+begin_BLOCK
and end with #+end_BLOCK.
This is a quote block.
#+end_quote

You can also have format-specific markup, for some formats
@@html:like <abbr title="Hypertext Markup Language">HTML</abbr>@@
@@latex:like \LaTeX@@.

HTML

<div id="outline-container-org75efe15" class="outline-2">
<h2 id="org75efe15"><span class="section-number-2">1</span> heading</h2>
<div class="outline-text-2" id="text-1">
</div>
<div id="outline-container-org548173a" class="outline-3">
<h3 id="org548173a"><span class="section-number-3">1.1</span> Sub heading</h3>
<div class="outline-text-3" id="text-1-1">
<p>
Paragraphs are separated
by a blank line.
</p>

<hr />

<p>
Five dashes is a horizontal rule.
</p>
</div>
</div>
<p>
Simple markup produces <b>bold</b>
and <i>italic</i> text. There's also
<code>code</code>, and other markups.
</p>

<p>
Here is a link to the
org <a href="https://orgmode.org/">homepage</a>.
</p>
<p>
An unordered list:
</p>
<ul class="org-ul">
<li>apples</li>
<li>oranges</li>
<li>pears</li>
</ul>

<p>
An ordered list:
</p>
<ol class="org-ol">
<li>lather</li>
<li>rinse</li>
<li>repeat</li>
</ol>
<div id="org0d245af" class="figure">
<p><img src="org-mode-unicorn.png" alt="org-mode-unicorn.png" />
</p>
</div>

<blockquote>
<p>
Org blocks start with #+begin<sub>BLOCK</sub>
and end with #+end<sub>BLOCK</sub>.
This is a quote block.
</p>
</blockquote>

<p>
You can also have format-specific markup, for some formats
like <abbr title="Hypertext Markup Language">HTML</abbr>
.
</p>

HTML (rendered)

Heading
Sub heading

Paragraphs are separated by a blank line.


Five dashes is a horizontal rule.

Simple markup produces bold and italic text. There's also code, and other markups.

Here is a link to the org homepage.

An unordered list:

  • apples
  • oranges
  • pears

An ordered list:

  1. lather
  2. rinse
  3. repeat

Org-mode-unicorn.svg

Org blocks start with #+beginBLOCK and end with #+endBLOCK. This is a quote block.

You can also have format-specific markup, for some formats like HTML .

LaTeX

\section{Heading}
\label{sec:orgb1c599c}
\subsection{Sub heading}
\label{sec:orgf23aeb1}

Paragraphs are separated
by a blank line.

\noindent\rule{\textwidth}{0.5pt}

Five dashes is a horizontal rule.
Simple markup produces \textbf{bold}
and \emph{italic} text. There's also
\texttt{code}, and other markups.

Here is a link to the
org \href{https://orgmode.org/}{homepage}.
An unordered list:
\begin{itemize}
\item apples
\item oranges
\item pears
\end{itemize}

An ordered list:
\begin{enumerate}
\item lather
\item rinse
\item repeat
\end{enumerate}
\begin{center}
\includegraphics[width=.9\linewidth]{org-mode-unicorn.png}
\end{center}

\begin{quote}
Org blocks start with \#+begin\textsubscript{BLOCK}
and end with \#+end\textsubscript{BLOCK}.
This is a quote block.
\end{quote}

You can also have format-specific markup, for some formats
like \LaTeX.

ODT

<text:h text:style-name="Heading_20_1" text:outline-level="1" text:is-list-header="false">
<text:bookmark-start text:name="OrgXref.org3c83460"/>
<text:bookmark text:name="org3c83460"/>Heading
<text:bookmark-end text:name="OrgXref.org3c83460"/></text:h>
<text:h text:style-name="Heading_20_2" text:outline-level="2" text:is-list-header="false">
<text:bookmark-start text:name="OrgXref.orgeb4e8ed"/>
<text:bookmark text:name="orgeb4e8ed"/>Sub heading
<text:bookmark-end text:name="OrgXref.orgeb4e8ed"/></text:h>
<text:p text:style-name="Text_20_body">Paragraphs are separated
by a blank line.
</text:p>

<text:p text:style-name="Horizontal_20_Line"></text:p>

<text:p text:style-name="Text_20_body">Five dashes is a horizontal rule.
</text:p>
<text:p text:style-name="Text_20_body">Simple markup produces <text:span text:style-name="Bold">bold</text:span>
and <text:span text:style-name="Emphasis">italic</text:span> text. There's also
<text:span text:style-name="OrgCode">code</text:span>, and other markups.
</text:p>

<text:p text:style-name="Text_20_body">Here is a link to the
org <text:a xlink:type="simple" xlink:href="https://orgmode.org/">homepage</text:a>.
</text:p>
<text:list text:style-name="OrgBulletedList" text:continue-numbering="false">

<text:list-item>
<text:p text:style-name="Text_20_body">apples
</text:p>
</text:list-item>
<text:list-item>
<text:p text:style-name="Text_20_body">oranges
</text:p>
</text:list-item>
<text:list-item>
<text:p text:style-name="Text_20_body">pears
</text:p>
</text:list-item>
</text:list>

<text:p text:style-name="Text_20_body">An ordered list:
</text:p>

<text:list text:style-name="OrgNumberedList" text:continue-numbering="false">
<text:list-item>
<text:p text:style-name="Text_20_body">lather
</text:p>
</text:list-item>
<text:list-item>
<text:p text:style-name="Text_20_body">rinse
</text:p>
</text:list-item>
<text:list-item>
<text:p text:style-name="Text_20_body">repeat
</text:p>
</text:list-item>
</text:list>
<text:p text:style-name="Text_20_body">
<draw:frame draw:style-name="OrgDisplayImage" svg:width="6.24cm" svg:height="6.88cm" text:anchor-type="paragraph" draw:name="Frame1">

<draw:image xlink:href="Images/0001.png" xlink:type="simple" xlink:show="embed" xlink:actuate="onLoad"/>
</draw:frame>
</text:p>

<text:p text:style-name="Quotations">Org blocks start with #+begin<text:span text:style-name="OrgSubscript">BLOCK</text:span>
and end with #+end<text:span text:style-name="OrgSubscript">BLOCK</text:span>.
This is a quote block.
</text:p>

<text:p text:style-name="Text_20_body">You can also have format-specific markup, for some formats
.
</text:p>

ASCII

1 Heading
=========

1.1 Sub heading
~~~~~~~~~~~~~~~

  Paragraphs are separated by a blank line.

  -----------------------------------------

  Five dashes is a horizontal rule.
Simple markup produces *bold* and /italic/ text. There's also `code',
and other markups.

Here is a link to the org [homepage].

[homepage] <https://orgmode.org/>
An unordered list:
+ apples
+ oranges
+ pears

An ordered list:
1. lather
2. rinse
3. repeat
<file:org-mode-unicorn.png>

      Org blocks start with #+begin_BLOCK and end with
      #+end_BLOCK. This is a quote block.

You can also have format-specific markup, for some formats .

Markdown

<a id="orgfcf266c"></a>
# Heading

<a id="org6c11f38"></a>
## Sub heading

Paragraphs are separated
by a blank line.

---

Five dashes is a horizontal rule.
Simple markup produces **bold**
and *italic* text. There's also
`code`, and other markups.

Here is a link to the
org [homepage](https://orgmode.org/).
An unordered list:

-   apples
-   oranges
-   pears

An ordered list:

1.  lather
2.  rinse
3.  repeat
![img](org-mode-unicorn.png)

> Org blocks start with #+begin<sub>BLOCK</sub>
> and end with #+end<sub>BLOCK</sub>.
> This is a quote block.

You can also have format-specific markup, for some formats
like <abbr title="Hypertext Markup Language">HTML</abbr>

Texinfo

@node Heading
@chapter Heading

@menu
* Sub heading::
@end menu

@node Sub heading
@section Sub heading

Paragraphs are separated
by a blank line.

Five dashes is a horizontal rule.
Simple markup produces @strong{bold}
and @emph{italic} text. There's also
@code{code}, and other markups.

Here is a link to the
org @uref{https://orgmode.org/, homepage}.
An unordered list:
@itemize
@item
apples
@item
oranges
@item
pears
@end itemize

An ordered list:
@enumerate
@item
lather
@item
rinse
@item
repeat
@end enumerate
@image{org-mode-unicorn,,,,png}

@quotation
Org blocks start with #+begin_BLOCK
and end with #+end_BLOCK.
This is a quote block.

@end quotation

You can also have format-specific markup, for some formats.

See also

References

  1. Gmane: Org, Org-mode, Orgmode, Org Mode - Carsten Dominik: Org, the system; Org-mode, the major mode
  2. Dominik, Carsten (2011-12-15), Emacs Org-mode: Organizing a Scientist's Life and Work (abstract and video), Max Planck Institute for Neurological Research, https://vimeo.com/33725204 
  3. Org Mode Manual: History and acknowledgments, Free Software Foundation, http://orgmode.org/org.html#History-and-Acknowledgments 
  4. Corbet, Jonathan (2006), "Pre-testing Emacs 22", LWN.net, https://lwn.net/Articles/206916/ 
  5. Org mode for Emacs – Community, http://orgmode.org/community.html 
  6. "Pandoc - Org-mode features and differences". https://pandoc.org/org.html. 
  7. "Content Formats \p Hugos". 10 January 2017. https://gohugo.io/content-management/formats/. 
  8. "Babel: active code in Org-mode". https://orgmode.org/worg/org-contrib/babel/. 
  9. Schulte, Eric; Davison, Dan; Dye, Thomas; Dominik, Carsten (2012-01-25). "A Multi-Language Computing Environment for Literate Programming and Reproducible Research" (in en). Journal of Statistical Software 46 (1): 1–24. doi:10.18637/jss.v046.i03. ISSN 1548-7660. 
  10. O'Toole, David, Org tutorial, http://orgmode.org/worg/org-tutorials/orgtutorial_dto.html 
  11. Dominik, Carsten, Technical description in 24 words, http://orgmode.org/worg/org-quotes.html#sec-2-1 
  12. The Linux Information Project: What is plain text?
  13. Chavan, Abhijeet (2007), "Get Organized with Emacs Org-mode", Linux Journal, http://www.linuxjournal.com/article/9116 
  14. Chua, Sacha, Outlining Your Notes with Org, http://sachachua.com/blog/2008/01/outlining-your-notes-with-org/ 
  15. "Babel: Languages". https://orgmode.org/worg/org-contrib/babel/languages/. 
  16. Org-mode Contributed Packages, and many other hierarchical or list-oriented formats.
  17. GitHub Markup, 2023-10-02, https://github.com/github/markup 
  18. Bao, Haojun (2019-12-02), org-jira, https://github.com/baohaojun/org-jira 

Further reading

Books

Journal articles

External links