Markdown is a lightweight markup language for creating formatted text using a text editor. John Gruber created Markdown in 2004 as an easy-to-read markup language. Markdown is widely used for and instant messaging, and also used elsewhere in online forums, collaborative software, documentation pages, and README.
The initial description of Markdown contained ambiguities and raised unanswered questions, causing implementations to both intentionally and accidentally diverge from the original version. This was addressed in 2014 when long-standing Markdown contributors released CommonMark, an unambiguous specification and test suite for Markdown.
In 2002 Aaron Swartz created atx and referred to it as "the true structured text format". Gruber created the Markdown language in 2004 with Swartz as his "sounding board". The goal of the language was to enable people "to write using an easy-to-read and easy-to-write plain text format, optionally convert it to structurally valid XHTML (or HTML)".Markdown 1.0.1 readme source code
Another key design goal was readability, that the language be readable as-is, without looking like it has been marked up with tags or formatting instructions, unlike text formatted with "heavier" , such as Rich Text Format (RTF), HTML, or even wikitext (each of which have obvious in-line tags and formatting instructions which can make the text more difficult for humans to read).
Gruber wrote a Perl script, , which converts marked-up text input to valid, well-formed XHTML or HTML, encoding angle brackets (, ) and (), which would be misinterpreted as special characters in those languages. It can take the role of a standalone script, a plugin for Blosxom or a Movable Type, or of a text filter for BBEdit.
The behavior of some of these diverged from the reference implementation, as Markdown was only characterised by an informal specification and a Perl implementation for conversion to HTML.
At the same time, a number of ambiguities in the informal specification had attracted attention. These issues spurred the creation of tools such as Babelmark to compare the output of various implementations, and an effort by some developers of Markdown Parsing for standardisation. However, Gruber has argued that complete standardization would be a mistake: "Different sites (and people) have different needs. No one syntax would make all happy."
Gruber avoided using curly braces in Markdown to unofficially reserve them for implementation-specific extensions.
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".
In September 2014, Gruber objected to the usage of "Markdown" in the name of this effort and it was rebranded as CommonMark. CommonMark.org published several versions of a specification, reference implementation, test suite, and "plans to announce a finalized 1.0 spec and test suite in 2019".
No 1.0 spec has since been released, as major issues still remain unsolved.
Nonetheless, the following websites and projects have adopted CommonMark: Discourse, GitHub, GitLab, Reddit, Qt, Stack Exchange (Stack Overflow), and Swift.
In March 2016, two relevant informational Internet RFCs were published:
Depending on implementation, basic inline may be supported.
Italic text may be implemented by .md or .markdown.
In 2017, GitHub released a formal specification of its GitHub Flavored Markdown (GFM) that is based on CommonMark. It is a Superset of CommonMark, following its specification exactly except for tables, strikethrough, autolinks and task lists, which GFM adds as extensions.
Accordingly, GitHub also changed the parser used on their sites, which required that some documents be changed. For instance, GFM now requires that the number sign that creates a heading be separated from the heading text by a space character.
Markdown Extra is supported in some content management systems such as Drupal, Grav (CMS), Textpattern and TYPO3.
Paragraphs are separated by a blank line. Two spaces at the end of a line produce a line break. | Heading
Sub-heading
Alternative heading
Alternative sub-heading
Paragraphs are separated by a blank line.
Two spaces at the end of a line
Paragraphs are separated by a blank line.
Two spaces at the end of a line
|
Horizontal rule: ---
| Text attributes italic, bold, text/markdown.
Horizontal rule:
Horizontal rule:
|
1. fruits * apple * banana 2. vegetables - carrot - broccoli
| Bullet lists nested within numbered list:
|
!Image(Icon-pictures.png "icon") > Markdown uses email-style characters for blockquoting. > > Multiple paragraphs need to be prepended individually. Most inline HTML tags are supported. | A link.
Most inline HTML tags are supported.
Markdown uses email-style characters for blockquoting. Most inline HTML tags are supported.
|
While Markdown is a minimal markup language and is 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.
|
|