Thursday, June 19, 2014

format: Markdown

Markdown - Wikipedia, the free encyclopedia:

Markdown is a plain text formatting syntax[5] designed so that it optionally can be converted toHTML using a tool by the same name. Markdown is popularly used to format readme files, for writing messages in online discussion forums or in text editors for the quick creation of rich text documents.

Sites such as GitHub, reddit, Diaspora, Stack Overflow, OpenStreetMap, and SourceForge use variants of Markdown

 Heading
 =======

 Sub-heading
 -----------
 
 Paragraphs are separated
 by a blank line.
 
 Text attributes *italic*,
 **bold**, `monospace`.
 
 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>
 
<p>Paragraphs are separated
by a blank line.</p>
 
<p>Text attributes <em>italic</em>,
<strong>bold</strong>,
<code>monospace</code>.</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 rainnot the
reignin Spain.</p>

No comments: