Jump to content

Markdown

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by Cherry (talk | contribs) at 14:39, 15 March 2017 (intro : add sentence about flavors and 2004 Markdown ambiguities). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

Markdown
Filename extensions.md, .markdown[1][2]
Internet media type
text/markdown[2]
Uniform Type Identifier (UTI)net.daringfireball.markdown
Developed byJohn Gruber
Initial releaseMarch 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 formatMarkup language
Extended toMultiMarkdown, Markdown Extra, CommonMark[6]
Free format?yes[7]
Websitedaringfireball.net/projects/markdown

Markdown is a lightweight markup language with plain text formatting syntax. It's 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. As the initial description of Markdown contained ambiguities and unanswered questions, many implementations and extensions of Markdown appeared over the years to answer theses issues.

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, BitBucket, 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]

Markdown Extra

Markdown Extra is a lightweight markup language based on Markdown implemented in PHP (originally), Python and Ruby. It adds features not available with plain Markdown syntax. Markdown Extra is supported in content management systems, for example Drupal,[30] TYPO3[31] and MediaWiki.[32]

It adds the following features to Markdown:

  • Markdown inside HTML blocks
  • Elements with id/class attribute
  • Fenced code blocks
  • Tables[33]
  • Definition lists
  • Footnotes
  • Abbreviations

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>

<p>Horizontal rule:</p>

<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>

Per WP:PSEUDOHEADING fake headings should not be used in articles.

Per WP:PSEUDOHEADING fake headings should not be used in articles.

Per WP:PSEUDOHEADING fake headings should not be used in articles.

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.[34] For example, Markdown plugins exist for every major blogging platform.[35]

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 render the code directly in a WYSIWYG fashion.

  • The sourcecode documentation generator Doxygen supports Markdown with extra features.[36]
  • RStudio, an IDE for R provides a C++ wrapper function for a markdown variant called sundown.[37]
  • GitHub Flavored Markdown (GFM) treats newlines in paragraph-like content as real line breaks, ignores underscores in words, and adds syntax highlighting, task lists,[38] and tables.[39]
  • Discount - a C implementation.[40][41]
  • MarkAPL is a converter written in Dyalog APL. It supports fenced blocks, smart typography, link references, and 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. ^ a b RFC 7763 - The text/markdown Media Type
  3. ^ a b "Markdown". Aaron Swartz: The Weblog. 2004-03-19.
  4. ^ a b "Daring Fireball: Markdown". Archived from the original on 2004-04-02. Retrieved 2014-04-25.
  5. ^ a b c 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. ^ a b "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. ^ Markdown editor for BUEditor
  31. ^ Markdown for TYPO3
  32. ^ MarkdownExtraParser for MediaWiki
  33. ^ PHP Markdown Extra - Tables
  34. ^ "W3C Community Page of Markdown Implementations". W3C Markdown Wiki. Retrieved 24 March 2016.
  35. ^ "Markdown THrowdown – What happens when FOSS software gets corporate backing". Ars Technica. 2014-10-05.
  36. ^ "Doxygen Manual: Markdown support". Stack.nl. 2014-04-21. Retrieved 2014-04-25.
  37. ^ jjallaire; e.a. (2015-06-30). "Markdown.cpp". GitHub project RStudio. Retrieved 2016-07-07.
  38. ^ "Writing on GitHub". help.github.com. Github, Inc. Retrieved 9 July 2014.
  39. ^ "GitHub Flavored Markdown". github.com. Retrieved 29 March 2013.
  40. ^ "Discount - a C implementation of the Markdown markup language". Retrieved 2014-11-01.
  41. ^ David Parsons (2016-05-28). "DISCOUNT". GitHub. Retrieved 2016-07-07. discount at Open Hub {{cite web}}: External link in |quote= (help)
  42. ^ "Markdown converter written in Dyalog APL".
  43. ^ "PHP Markdown". Retrieved 2016-03-01.

External links