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