1GitHub Flavored Markdown
2========================
3
4Multiple underscores in words
5-----------------------------
6
7do_this_and_do_that_and_another_thing
8
9URL autolinking
10---------------
11
12http://example.com
13
14Strikethrough
15-------------
16
17~~Mistaken text.~~
18
19Fenced code blocks
20------------------
21
22```
23function test() {
24  console.log("notice the blank line before this function?");
25}
26```
27
28Syntax highlighting
29-------------------
30
31```ruby
32require 'redcarpet'
33markdown = Redcarpet.new("Hello World!")
34puts markdown.to_html
35```
36
37~~~
38this is also code
39~~~
40
41