Markdown

John Gruber created the Markdown language in 2004 in collaboration with Aaron Swartz on the syntax,[2][3] with the goal of enabling people

"to write using an easy-to-read and easy-to-write plain text format, optionally convert it to structurally valid XHTML (or HTML)"

Articles about Markdown

Reasons to Learn Markdown

  1. Easy to write
  2. You can quickly become an expert
  3. As a programmer you will use it every day

An image in Markdown and HTML
![Image](Icon-pictures.png "icon")

    <img alt="Image" title="icon" src="Icon-pictures.png" />
    

An link in Markdown and HTML

A link in Markdown [Markdown Wiki](https://en.wikipedia.org/wiki/Markdown)
vs.
A link in HTML <a href= "https://en.wikipedia.org/wiki/Markdown" Markdown Wiki </a>


Basics of Markdown

  * apples
      * oranges
      * pears
    
  1. wash
      2. rinse
      3. repeat
    

Markdown uses email-style > characters for blockquoting