Markdown

Markdown
Filename extensions .md, .markdown[1]
Uniform Type Identifier (UTI) net.daringfireball.markdown
Developed by John Gruber
Initial release March 25, 2004[2]
Latest release
1.0.1
(December 17, 2004[3])
Type of format Markup language
Open format? yes[4]
Website daringfireball.net/projects/markdown/

Markdown is a markup language with plain text formatting syntax designed so that it can be converted to HTML and many other formats using a tool by the same name.[5][6] Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text using a plain text editor.

History

John Gruber, with substantial contributions from Aaron Swartz,[7] created the Markdown language in 2004 with the goal of enabling people "to write using an easy-to-read, easy-to-write plain text format, and optionally convert it to structurally valid XHTML (or HTML)”.[3]

Taking cues from existing conventions for marking up plain text in email, such as setext, the language was designed to be readable as-is, without looking like it's been marked up with tags or formatting instructions,[8] unlike text formatted with a markup language, such as Rich Text Format (RTF) or HTML, which have obvious tags and formatting instructions.

Gruber wrote a Perl script, Markdown.pl, which converts marked-up text input to valid, well-formed XHTML or HTML and replaces left-pointing angle brackets ('<') and ampersands with their corresponding character entity references. It can be used as a standalone script, as a plugin for Blosxom or Movable Type, or as a text filter for BBEdit.[3]

Markdown has since been re-implemented by others as a Perl module available on CPAN (Text::Markdown), and in a variety of other programming languages. It is distributed under a BSD-style license and is included with, or available as a plugin for, several content-management systems.[4][9][10]

Sites such as GitHub, reddit, Diaspora, Stack Exchange, OpenStreetMap, and SourceForge use variants of Markdown to facilitate discussion between users.[11][12][13][14]

Standardization

There is no clearly defined Markdown standard, apart from the original writeup and implementation by John Gruber, which some consider to be abandonware.[15][16] This has led to fragmentation as different vendors write their own variants of the language to correct flaws or add missing features.

From 2012 through 2014, a group of people including Jeff Atwood launched what Atwood characterized as a standardization effort.[17] A community website now aims to "document various tools and resources available to document authors and developers, as well as implementors of the various markdown implementations".[18] In September 2014, Gruber objected to the usage of "Markdown" in the name of this effort and it was rebranded as a new dialect named "CommonMark".[19][20]

A tool (named Babelmark2[21]) is also available to "[compare] the output of various implementations" to "promote discussion of how and whether certain vague aspects of the markdown spec should be clarified".[22] Gruber has argued that complete standardisation would be mistaken: "Different sites (and people) have different needs. No one syntax would make all happy."[23]

A standards effort for the Internet media type text/markdown (independent of the syntax) is underway in the IETF. The Internet-Draft, draft-ietf-appsawg-text-markdown, is planned to be submitted to the IESG in April 2015. The Markdown community is invited to submit use cases for Markdown, which will inform the media type standardization process.

Extensions

A number of lightweight markup languages extend Markdown by implementing added features (such as tables, footnotes, definition lists, and Markdown inside HTML blocks) not available with plain Markdown syntax. Among these are Markdown Extra, MultiMarkdown, Maruku,[24] Kramdown and the Pandoc Markdown extension.[25] In some cases, this is in order to enable conversion into more formats than HTML, e.g. LaTeX, RTF and DocBook.

Many implementations also intentionally omit support for middle word emphasis. The original Markdown implementation interprets constructs like my_long_variable as a request to emphasize "long" in the middle of a word. Many users found this confusing, so many later implementations such as PHP Markdown and Python Markdown do not implement middle word emphasis by default.[26]

The essay "Thoughts on Markdown" stated that Markdown's original developer, John Gruber, has not responded to discussions about extensions to Markdown, and that "Markdown is changing, with or without him".

Example

text using Markdown syntax the corresponding HTML produced by a Markdown processor the text viewed in a browser
 Heading
 =======
 
 Sub-heading
 -----------
 
 ### Another deeper heading
 
 Paragraphs are separated
 by a blank line.
 
 Leave 2 spaces at the end of a line to do a  
 line break
 
 Text attributes *italic*, **bold**,
 `monospace`, ~~strikethrough~~ .
 
 A [link](http://example.com).
 <<<   No space between ] and (  >>>

 Shopping list:
 
   * apples
   * oranges
   * pears
 
 Numbered list:
 
   1. apples
   2. oranges
   3. pears
 
 The rain---not the reign---in
 Spain.
<h1>Heading</h1>

<h2>Sub-heading</h2>

<h3>Another deeper heading</h3>

<p>Paragraphs are separated
by a blank line.</p>

<p>Leave 2 spaces at the end of a line to do a<br />
line break</p>

<p>Text attributes <em>italic</em>, <strong>bold</strong>,
<code>monospace</code>, <s>strikethrough</s>.</p>

<p>A <a href="http://example.com">link</a>.</p>

<p>Shopping list:</p>

<ul>
<li>apples</li>
<li>oranges</li>
<li>pears</li>
</ul>

<p>Numbered list:</p>

<ol>
<li>apples</li>
<li>oranges</li>
<li>pears</li>
</ol>

<p>The rain&mdash;not the
reign&mdash;in Spain.</p>
Heading
Sub-heading
Another deeper heading

Paragraphs are separated by a blank line.

Leave 2 spaces at the end of a line to do a
line break

Text attributes italic, bold, monospace, strikethrough.

A link.

Shopping list:

  • apples
  • oranges
  • pears

Numbered list:

  1. apples
  2. oranges
  3. pears

The rainnot the reignin Spain.

Editors

While Markdown is a minimal markup language and is easily read and edited with a normal text editor, there are specially designed editors that preview the files with styles. There are a variety of such editors available for all major platforms. There are syntax highlighting plugins for Markdown built into emacs, gedit, and vim.

Implementations

Implementations of Markdown are available for many different frameworks, platforms and languages.

Test suites

There are many more open-source implementations of Markdown available online.

See also

References

  1. Daring Fireball Statement by creator John Gruber
  2. "Daring Fireball: Markdown". Web.archive.org. Retrieved April 25, 2014.
  3. 3.0 3.1 3.2 Markdown 1.0.1 readme source code "Daring Fireball – Markdown". 17 Dec 2004.
  4. 4.0 4.1 "Markdown: License". Daring Fireball. Retrieved April 25, 2014.
  5. "Markdown". December 4, 2013.
  6. http://johnmacfarlane.net/pandoc/index.html
  7. "Markdown". Aaron Swartz: The Weblog. March 19, 2004.
  8. Markdown Syntax "Daring Fireball – Markdown – Syntax". 13 Jun 2013.
  9. "MarsEdit 2.3 ties the knot with Tumblr support – Ars Technica". Retrieved 2009-08-11.
  10. "Review: Practical Django Projects – Ars Technica". Retrieved 2009-08-11.
  11. 11.0 11.1 "GitHub Flavored Markdown". github.com. Retrieved 29 March 2013.
  12. "Reddit markdown primer. Or, how do you do all that fancy formatting in your comments, anyway?". reddit.com. Retrieved 29 March 2013.
  13. "Markdown Editing Help". http://stackoverflow.com. Retrieved 11 April 2014.
  14. "SourceForge: Markdown Syntax Guide". sourceforge.net. Retrieved 2013-05-10.
  15. Atwood, Jeff. "Responsible Open Source Code Parenting". Codinghorror.com. Retrieved 2014-04-25.
  16. "Trouble with parentheses in Markdown hyperlinks". Six.pairlist.net. 2012-10-17. Retrieved 2014-04-25.
  17. 17.0 17.1 Atwood, Jeff (2012-10-25). "The Future of Markdown". Codinghorror.com. Retrieved 2014-04-25.
  18. "Markdown Community Page". Markdown.github.io. Retrieved 2014-04-25.
  19. "Standard Markdown is now Common Markdown". Jeff Atwood. Retrieved 7 October 2014.
  20. "Standard Markdown Becomes Common Markdown then CommonMark". InfoQ. Retrieved 7 October 2014.
  21. "Babelmark 2 - Compare markdown implementations". Johnmacfarlane.net. Retrieved 2014-04-25.
  22. "Babelmark 2 - FAQ". Johnmacfarlane.net. Retrieved 2014-04-25.
  23. Gruber, John. "Twitter post". Retrieved 6 September 2014.
  24. Maruku
  25. "Pandoc Markdown". Pandoc. Retrieved 7 October 2014.
  26. "Markdown Discuss". Markdown-Discuss. Retrieved 7 October 2014.
  27. "Doxygen Manual: Markdown support". Stack.nl. 2014-04-21. Retrieved 2014-04-25.
  28. file 462 lines (396 sloc) 12.572 kb. "rstudio/src/cpp/core/markdown/Markdown.cpp at master · rstudio/rstudio · GitHub". Github.com. Retrieved 2014-04-25.
  29. "JetBrains Plugin Repository :: Markdown". Plugins.jetbrains.com. Retrieved 2014-04-25.
  30. "nicoulaj/idea-markdown ¡ GitHub". Github.com. 2013-12-01. Retrieved 2014-04-25.
  31. "Writing on GitHub". help.github.com. Github, Inc. Retrieved 9 July 2014.
  32. "Pandoc's markdown". Retrieved 2014-08-05.
  33. "Discount - a C implementation of the Markdown markup language". Retrieved 2014-11-01.
  34. "Md2doc - Markdown2Html2Docbook XSLT 2.0 conversion tool". Retrieved 2014-11-25.

External links