Upgrade to Pro — share decks privately, control downloads, hide ads and more …

md

 md

An in-house presentation for Red Sashimi.

Avatar for kristian

kristian

May 07, 2012
Tweet

Other Decks in Programming

Transcript

  1. Markdown • Text to HTML • Tool of choice for

    bloggers, programmer documentation Monday, May 7, 12
  2. Headers <h1>, <h2>, <h3> # This is my h1 ##

    This is my h2 ### This is my h3 Monday, May 7, 12
  3. **This is my bold** __This is my other bold__ *This

    is my italic* _This is my other italic_ Monday, May 7, 12
  4. Lists - Begin my list - Continue my list -

    End my list Monday, May 7, 12
  5. Quote me! > People with tiny glasses and costly shoes

    can always find a couple of hours to explain how you did it all wrong. >> Merlin Mann Monday, May 7, 12
  6. Code <pre> puts “This is my code” (four spaces) `cd

    ~/Dropbox/Code` (backticks) Monday, May 7, 12
  7. Real Examples • Byword app • Most blogging platforms •

    Github readmes • If your repo isn’t using markdown, fix it! • (`git mv README.* README.md`) Monday, May 7, 12