Markdown

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 (2004-03-19)[3][4]
Latest release
1.0.1
(December 17, 2004 (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] 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 in collaboration with 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,[9] 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, Textile, and reStructuredText.

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

Standardization

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

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 original Markdown syntax. Among these are Markdown Extra, MultiMarkdown, and the Pandoc Markdown extension.[19]

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

Babelmark2[21] is a tool 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]

In March 2016 RFC 7763 and RFC 7764 were published. RFC 7763 introduced MIME type text/markdown with the original variant. RFC 7764 discusses and registered the variants MultiMarkdown, GFM, Pandoc, CommonMark, and Markdown Extra among others.[24]

CommonMark

From 2012, a group of people including Jeff Atwood launched what Atwood characterized as a standardization effort.[25] 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".[26] 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.[27][28] CommonMark.org published several versions of a specification, reference implementation, and test suite, and "[plans] to announce a finalized 1.0 spec and test suite in early 2016."[29]

Example

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>

<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

Implementations of Markdown are available for over a dozen programming languages; in addition, many platforms and frameworks support Markdown.[30] For example, Markdown plugins exist for every major blogging platform.[31]

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.

See also

References

  1. Daring Fireball Statement by creator John Gruber
  2. 1 2 RFC 7763 - The text/markdown Media Type
  3. 1 2 "Markdown". Aaron Swartz: The Weblog. 2004-03-19.
  4. 1 2 "Daring Fireball: Markdown". Archived from the original on 2004-04-02. Retrieved 2014-04-25.
  5. 1 2 3 Markdown 1.0.1 readme source code "Daring Fireball – Markdown". 2004-12-17.
  6. RFC7764 – Guidance on Markdown: Design Philosophies, Stability Strategies, and Select Registrations
  7. 1 2 "Markdown: License". Daring Fireball. Retrieved 2014-04-25.
  8. "Markdown". 2013-12-04.
  9. Markdown Syntax "Daring Fireball – Markdown – Syntax". 2013-06-13. Readability, however, is emphasized above all else. A Markdown-formatted document should be publishable as-is, as plain text, without looking like it’s been marked up with tags or formatting instructions. While Markdown’s syntax has been influenced by several existing text-to-HTML filters — including Setext, atx, Textile, reStructuredText, Grutatext, and EtText — the single biggest source of inspiration for Markdown’s syntax is the format of plain text email.
  10. "Markdown 2.6.6". python.org. 2016-03-21. Retrieved 2016-07-06.
  11. "MarsEdit 2.3 ties the knot with Tumblr support – Ars Technica". Retrieved 2009-08-11.
  12. "Review: Practical Django Projects – Ars Technica". Retrieved 2009-08-11.
  13. "GitHub Flavored Markdown". Github.com. Retrieved 2013-03-29.
  14. "Reddit markdown primer. Or, how do you do all that fancy formatting in your comments, anyway?". Reddit.com. Retrieved 2013-03-29.
  15. "Markdown Editing Help". StackOverflow.com. Retrieved 2014-04-11.
  16. "SourceForge: Markdown Syntax Guide". SourceForge.net. Retrieved 2013-05-10.
  17. Jeff Atwood (2009-12-29). "Responsible Open Source Code Parenting". Codinghorror.com. Retrieved 2016-07-07.
  18. "Trouble with parentheses in Markdown hyperlinks". Six.pairlist.net. 2012-10-17. Retrieved 2014-04-25.
  19. "Pandoc Markdown". Pandoc. Retrieved 2014-10-07.
  20. "Markdown Discuss". Markdown-Discuss. Retrieved 2014-10-07.
  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 2014-09-06.
  24. "Markdown Variants". IANA. 2016-03-28. Retrieved 2016-07-06.
  25. Atwood, Jeff (2012-10-25). "The Future of Markdown". CodingHorror.com. Retrieved 2014-04-25.
  26. "Markdown Community Page". Github. Retrieved 2014-04-25.
  27. "Standard Markdown is now Common Markdown". Jeff Atwood. Retrieved 2014-10-07.
  28. "Standard Markdown Becomes Common Markdown then CommonMark". InfoQ. Retrieved 2014-10-07.
  29. "CommonMark". Archived from the original on 12 Apr 2016. Retrieved 5 Jul 2016. The current version of the CommonMark spec is complete, and quite robust after a year of public feedback … but not quite final. With your help, we plan to announce a finalized 1.0 spec and test suite in early 2016.
  30. "W3C Community Page of Markdown Implementations". W3C Markdown Wiki. Retrieved 24 March 2016.
  31. "Markdown THrowdown – What happens when FOSS software gets corporate backing". Ars Technica. 2014-10-05.
  32. "Doxygen Manual: Markdown support". Stack.nl. 2014-04-21. Retrieved 2014-04-25.
  33. jjallaire; e.a. (2015-06-30). "Markdown.cpp". GitHub project RStudio. Retrieved 2016-07-07.
  34. "JetBrains Plugin Repository :: Markdown". Plugins.jetbrains.com. Retrieved 2014-04-25.
  35. "nicoulaj/idea-markdown — GitHub". Github.com. 2013-12-01. Retrieved 2014-04-25.
  36. "Writing on GitHub". help.github.com. Github, Inc. Retrieved 9 July 2014.
  37. "GitHub Flavored Markdown". github.com. Retrieved 29 March 2013.
  38. "Discount - a C implementation of the Markdown markup language". Retrieved 2014-11-01.
  39. David Parsons (2016-05-28). "DISCOUNT". GitHub. Retrieved 2016-07-07. discount at Open Hub
  40. "Markdown converter written in Dyalog APL.".
  41. "PHP Markdown". Retrieved 2016-03-01.

External links

This article is issued from Wikipedia - version of the 11/23/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.