├── README.md └── afu.png /README.md: -------------------------------------------------------------------------------- 1 | ### This README can be used as a reference for github-flavored-markdown styling (and possibly behavior). 2 | 3 | --- 4 | 5 | # H1 6 | followed by some text 7 | 8 | ## H2 9 | followed by some text 10 | 11 | ### H3 12 | followed by some text 13 | 14 | #### H4 15 | followed by some text 16 | 17 | ##### H5 18 | followed by some text 19 | 20 | ###### H6 21 | followed by some text 22 | 23 | Auto-detected link: http://www.france.com 24 | 25 | Some Ignored_multiple_underscore_italics here 26 | 27 | A line of normal text with `inline code` and *italics*, **strong font**, and even some μ†ℱ ╋ℯ╳╋. Followed by lots of Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis id sem purus, eu commodo tortor. Donec malesuada ultricies dolor a eleifend. In hac habitasse platea dictumst. Vivamus a faucibus ligula. Nullam molestie tristique arcu, eu elementum metus ultricies sed. Aenean luctus congue lectus, vitae semper erat rhoncus non. Nulla facilisi. 28 | 29 | Followed by another line of normal text with `inline code` and *italics*, **strong font**, and even some μ†ℱ ╋ℯ╳╋. Followed by lots of Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis id sem purus, eu commodo tortor. Donec malesuada ultricies dolor a eleifend. In hac habitasse platea dictumst. Vivamus a faucibus ligula. Nullam molestie tristique arcu, eu elementum metus ultricies sed. Aenean luctus congue lectus, vitae semper erat rhoncus non. Nulla facilisi. 30 | 31 | Thin horizontal rule: 32 | 33 | -- 34 | 35 | Thick horizontal rule: 36 | 37 | ------ 38 | 39 | |Table Header 1|Table Header 2 | 40 | |--------------|-------------------------| 41 | |Content |http://example.org | 42 | |Content |http://localhost:\| 43 | Text right below table. Follows is a table with an empty cell, and unaligned indenting. 44 | 45 | |Table Header 1|Table Header 2| 46 | |--------------|--------------| 47 | |Content | Cntent | 48 | |Content | | 49 | 50 | Empty line between table and this text 51 | 52 | def this_is 53 | puts "some #{4-space-indent} code" 54 | end 55 | 56 | 57 | def this_is 58 | puts "some #{code tag} code" 59 | end 60 | 61 | 62 |
 63 | def this_is
 64 |   puts "some #{pre tag} code"
 65 | end
 66 | 
67 | 68 | ``` 69 | def this_is 70 | puts "some #{fenced} code" 71 | end 72 | ``` 73 | 74 | ```ruby 75 | class Classy 76 | def this_is 77 | puts "some #{colored} ruby code with ruby syntax highlighting" 78 | @someobj.do_it(1, 2) 79 | end 80 | end 81 | ``` 82 | 83 | ```javascript 84 | var test = function this_is(){ 85 | console.log("some" + colored + "javascript code with javascript syntax highlighting really long"); 86 | } 87 | ``` 88 | 89 | ```clojure 90 | (defproject myproject "0.5.0-SNAPSHOT" 91 | :description "Some clojure code with syntax highlighting." 92 | :dependencies [[org.clojure/clojure "1.5.1"]] 93 | :plugins [[lein-tar "3.2.0"]]) 94 | ``` 95 | 96 | ```js 97 | var test = function this_is(){ 98 | console.log("language declared as 'js' instead"); 99 | } 100 | ``` 101 | 102 | ```bogus_language 103 | var test = function this_is(){ 104 | console.log("language declared as bogus_language"); 105 | } 106 | ``` 107 | 108 | > here is blockquote 109 | 110 | [Relative image link](afu.png) 111 | -------------------------------------------------------------------------------- /afu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/suan/github-flavored-markdown-test/44adcf42c1743014953162426f05d9496c6e9793/afu.png --------------------------------------------------------------------------------