Skip to content

Instantly share code, notes, and snippets.

@wbiker
Created June 7, 2014 17:59
Show Gist options
  • Save wbiker/bb8420025f177e534288 to your computer and use it in GitHub Desktop.
Save wbiker/bb8420025f177e534288 to your computer and use it in GitHub Desktop.

A quick guide to markdown as served by App::revealup
David Farrell
PerlTricks.com June 2014


This is H1

This is H2

This is H3

This is H4

# This is H1
## This is H2
### This is H3
#### This is H4

  • Unordered
  • lists are
  • made with plus, minus or asterisk
+ Unordered
- lists are
* made with plus, minus or asterisk

Press ↓ for more examples


  1. Ordered
  2. lists are
  3. made with numbers and a period
1. Ordered
2. lists are
3. made with numbers and a period

  • Nest
    • with
      • whitespace
* Nesting
    * is
        * easy

Blockquotes are like email

> Blockquotes are like email

Links are easy

[Links](http://perltricks.com) are easy

Images use a similar syntax as links

alt text

Images use a similar syntax as links

![alt text](http://bit.ly/1ekw7CV)

Code can be inlined with `backticks`

```
Or put in a block
```

Code can be `inlined` with \`backticks\`

\`\`\`  
Or put in a block  
\`\`\`

You can emphasise with italics, bold or strikethrough

You can emphasise with *italics*, **bold** or ~~strikethrough~~

Wrap up

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment