Flavor for your life, fuel for your machine.

The Simplicity Of Markdown

Markdown was created by John Gruber and Aaron Swartz. It is a simplified human readable form of markup that outputs HTML for posting on the web or rich text for sending emails.

Markdown documents are cross-platform by nature, so you can edit them in any text-capable app on any operating system. Howerver, there are apps specifically designed for writing in Markdown.

The Markdown Syntax

Headers

Markdown
# Header 1
## Header 2
### Header 3
#### Header 4
##### Header 5
###### Header 6

Header with a link.

Markdown
[Link back to H2](#id-goes-here)

Paragraph

Markdown
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s.

To create a line break, end a line in a paragraph with two or more spaces.  
I am a sentence with  
a line break.

Link

Markdown
[Google](http://google.com)

Inline markup

Markdown
_italics_
**bold**
\`code()\`
Note that underscores in words are ignored in Markdown.

Images

Markdown
![picture alt](/images/photo.jpeg "Title is optional")

Blockquotes

Markdown
> Blockquotes are like quoted text in email replies
>> And, they can be nested

Lists

Markdown
* Bullet lists are easy too
- Another one
+ Another one

1. A numbered list
2. Which is numbered
3. With periods and a space

Code

To create a basic code block, wrap the code with three backticks: “` An alternative way to create a code block is by adding four spaces before each line of code.

Markdown
* * * *
****
--------------------------

Markdown plus tables

Outer pipes on tables are optional
Colon used for alignment (right versus left)

Markdown
| Header | Header | Right  |
| ------ | ------ | -----: |
|  Cell  |  Cell  |   $10  |
|  Cell  |  Cell  |   $20  |

Markdown plus definition lists

Markdown
Term
: Definition

Multiple definitions and terms are possible

Markdown
Apple
: Pomaceous fruit of plants of the genus Malus.
: An american computer company.