Markdown

From Infogalactic: the planetary knowledge core
Jump to: navigation, search
Markdown
Filename extensions .md, .markdown[1][2]
Internet media type text/markdown[2]
Uniform Type Identifier (UTI) net.daringfireball.markdown
Developed by John Gruber
Initial release March 19, 2004; 20 years ago (2004-03-19)[3][4]
Latest release
1.0.1
(December 17, 2004; 19 years ago (2004-12-17)[5])
Type of format Markup language
Extended to MultiMarkdown, Markdown Extra, CommonMark[6]
Open format? yes[7]
Website daringfireball.net/projects/markdown/

Markdown is a lightweight 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.[8][9] 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 created the Markdown language in 2004, with significant collaboration from Aaron Swartz on the syntax,[3][4] 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)”.[5]

The key design goal is readability – that the language be readable as-is, without looking like it has been marked up with tags or formatting instructions,[10] unlike text formatted with a markup language, such as Rich Text Format (RTF) or HTML, which have obvious tags and formatting instructions. To this end, its main inspiration is the existing conventions for marking up plain text in email, though it also draws from earlier markup languages, notably setext, atx (by Aaron Swartz), Textile, reStructuredText, Grutatext, and EtText.[10]

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.[5]

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.[7][11][12]

Sites such as GitHub, reddit, Diaspora, Stack Exchange, OpenStreetMap, and SourceForge use variants of Markdown to facilitate discussion between users.[13][14][15][16] A Markdown dialect is also used by the instant messaging system Slack.[17]

Standardization

There is no clearly defined Markdown standard, apart from the original writeup and implementation by John Gruber, which some consider abandonware.[18][19] 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.[20] 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".[21] 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.[22][23]

A tool (named Babelmark2[24]) 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".[25] Gruber has argued that complete standardisation would be mistaken: "Different sites (and people) have different needs. No one syntax would make all happy."[26]

A standards effort for the Internet media type text/markdown (independent of the syntax) is underway in the IETF. An Internet-Draft, draft-ietf-appsawg-text-markdown,[2] was submitted to the IESG in April 2015. The Markdown community has been invited to submit use cases for Markdown to inform the media type standardization process.

Extensions

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

The original Markdown implementation interprets constructs like my_long_variable as a request to emphasize "long". Many users found this confusing, so many later implementations such as PHP Markdown and Python Markdown do not implement middle word emphasis with underscores.[28]

Example

Lua error in package.lua at line 80: module 'strict' not found.

Text using Markdown syntax Corresponding HTML produced by a Markdown processor Text viewed in a browser
Heading
=======
Sub-heading
-----------
### Another deeper heading
 
Paragraphs are separated
by a blank line.

Two spaces at the end of a line leave a  
line break.

Text attributes _italic_, *italic*, __bold__, **bold**, `monospace`.

Horizontal rule:

---

Bullet list:

  * apples
  * oranges
  * pears

Numbered list:

  1. apples
  2. oranges
  3. pears

A [link](http://example.com).
<h1>Heading</h1>

<hr />

<h2>Sub-heading</h2>

<h3>Another deeper heading</h3>



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

<p>Two spaces at the end of a line leave a<br />
line break.</p>

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

Horizontal rule:

<hr />

<p>Bullet 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>A <a href="http://example.com">link</a>.</p>
Heading
Sub-heading
Another deeper heading

Paragraphs are separated by a blank line.

Two spaces at the end of a line leave a
line break.

Text attributes italic, italic, bold, bold, monospace.

Horizontal rule:


Bullet list:

  • apples
  • oranges
  • pears

Numbered list:

  1. apples
  2. oranges
  3. pears

A link.

Implementations

Lua error in package.lua at line 80: module 'strict' not found. Implementations of Markdown are available for over a dozen programming languages; in addition, many platforms and frameworks support Markdown.[29] For example, Markdown plugins exist for every major blogging platform.[30]

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, which are available for all major platforms. Many general purpose text and code editors have syntax highlighting plugins for Markdown built into them or available as optional download. Editors may feature a side-by-side preview window or try to render the code directly in a WYSIWYG-like fashion.

  • The sourcecode documentation generator Doxygen supports Markdown with extra features.[31]
  • RStudio, an IDE for R provides a C++ wrapper function for a markdown variant called sundown.[32]
  • IntelliJ IDEA, an IDE for Java, provides a Markdown plugin[33][34]
  • MultiMarkdown, a format and program with more syntax features and export options than traditional Markdown
  • PageDown, a parser for StackExchange's Markdown syntax[35][discuss], written in JavaScript, based on Showdown by John Fraser
  • GitHub Flavored Markdown (GFM) treats newlines in paragraph-like content as real line breaks, ignores underscores in words, and adds syntax highlighting, task lists,[36] and tables.[37][discuss] It has several implementations:
    • "Grip - GitHub Readme Instant Preview" (Joe Esposito) - Python
    • "Vim-Flavored-Markdown" (Jeff Tratner) - Vim scripting
    • "GitHub-Flavored Markdown Comments" (Evan Solomon) - PHP WordPress plugin
    • "Markdown on Save" (Mark Jaquith) - PHP WordPress plugin
    • "Node-GFM" (Gabriel Llamas) - JavaScript
    • "Parsedown" (Emanuil Rusev) - PHP
  • Pandoc adds tables, line blocks, definition lists, superscripts and subscripts, can generate table of contents.[38]
  • Discount - a C implementation.[39][discuss]
  • Md2doc - a XSLT 2.0 implementation.[40][discuss]
  • Visual Studio Web Essentials - an extension library for Microsoft Visual Studio with live markdown preview[discuss]
  • Markdown editing and live preview in Linux with a python module[41][discuss]
  • MarkAPL is a converter written in Dyalog APL. It supports fenced blocks, smart typography, link references, special attributes and can generate a table of contents.[42]
  • PHP Markdown - a library package that includes the PHP Markdown parser and its sibling PHP Markdown Extra with additional features.[43]

See also

References

  1. Daring Fireball Statement by creator John Gruber
  2. 2.0 2.1 2.2 RFC 7763 - The text/markdown Media Type
  3. 3.0 3.1 Lua error in package.lua at line 80: module 'strict' not found.
  4. 4.0 4.1 Lua error in package.lua at line 80: module 'strict' not found.
  5. 5.0 5.1 5.2 Markdown 1.0.1 readme source code Lua error in package.lua at line 80: module 'strict' not found.
  6. RFC7764 – Guidance on Markdown: Design Philosophies, Stability Strategies, and Select Registrations
  7. 7.0 7.1 Lua error in package.lua at line 80: module 'strict' not found.
  8. Lua error in package.lua at line 80: module 'strict' not found.
  9. http://johnmacfarlane.net/pandoc/index.html
  10. 10.0 10.1 Markdown Syntax Lua error in package.lua at line 80: module 'strict' not found.
  11. Lua error in package.lua at line 80: module 'strict' not found.
  12. Lua error in package.lua at line 80: module 'strict' not found.
  13. Lua error in package.lua at line 80: module 'strict' not found.
  14. Lua error in package.lua at line 80: module 'strict' not found.
  15. Lua error in package.lua at line 80: module 'strict' not found.
  16. Lua error in package.lua at line 80: module 'strict' not found.
  17. Lua error in package.lua at line 80: module 'strict' not found.
  18. Lua error in package.lua at line 80: module 'strict' not found.
  19. Lua error in package.lua at line 80: module 'strict' not found.
  20. Lua error in package.lua at line 80: module 'strict' not found.
  21. Lua error in package.lua at line 80: module 'strict' not found.
  22. Lua error in package.lua at line 80: module 'strict' not found.
  23. Lua error in package.lua at line 80: module 'strict' not found.
  24. Lua error in package.lua at line 80: module 'strict' not found.
  25. Lua error in package.lua at line 80: module 'strict' not found.
  26. Lua error in package.lua at line 80: module 'strict' not found.
  27. Lua error in package.lua at line 80: module 'strict' not found.
  28. Lua error in package.lua at line 80: module 'strict' not found.
  29. Lua error in package.lua at line 80: module 'strict' not found.
  30. Lua error in package.lua at line 80: module 'strict' not found.
  31. Lua error in package.lua at line 80: module 'strict' not found.
  32. Lua error in package.lua at line 80: module 'strict' not found.
  33. Lua error in package.lua at line 80: module 'strict' not found.
  34. Lua error in package.lua at line 80: module 'strict' not found.
  35. Lua error in package.lua at line 80: module 'strict' not found.
  36. Lua error in package.lua at line 80: module 'strict' not found.
  37. Lua error in package.lua at line 80: module 'strict' not found.
  38. Lua error in package.lua at line 80: module 'strict' not found.
  39. Lua error in package.lua at line 80: module 'strict' not found.
  40. Lua error in package.lua at line 80: module 'strict' not found.
  41. Lua error in package.lua at line 80: module 'strict' not found.
  42. Lua error in package.lua at line 80: module 'strict' not found.
  43. Lua error in package.lua at line 80: module 'strict' not found.

External links