Markdown.md (1410B)
1 Source: https://github.com/textmate/markdown.tmbundle/blob/master/Tests/test-minimal.markdown 2 3 Inline styles 4 =============== 5 6 _italic_ 7 8 _italic one_ not italic _italic two_ 9 10 _italic\__ 11 12 _italic \__ 13 14 stuff * not italic* 15 16 *italic__* 17 18 _all _ italic_ 19 20 _italic 21 end italic_ 22 23 \\\\_italic\\_ 24 25 \\\\_italic\\\_\\\\_ 26 27 \\\\_italic\\_ 28 29 \_ not italic _ 30 31 _not italic _ 32 33 \\\\_not italic\_ 34 35 _not italic \_ 36 37 \\\_not italic\\_ 38 39 _not italic 40 41 not end italic_ 42 43 __bold__ 44 45 **bold\*** 46 47 ___bold_and_italic___ 48 49 ***bold_and_italic*** 50 51 `raw more` 52 53 ``dobule ` raw`` 54 55 `raw \` more` 56 57 Headings 58 ================ 59 60 heading 2 61 ---------- 62 63 ## heading 2 64 65 ### heading 3 66 67 ###### heading 6 68 69 Horizontal lines 70 ================= 71 72 *** 73 74 * * * 75 76 ___ 77 78 __ __ __ 79 80 - - - 81 82 ---------------- 83 84 85 Block formatting 86 ================ 87 88 Lists 89 ---------------- 90 91 * This *is a list!* 92 * This is another list item. 93 But this one spans *two* lines. 94 * Another list item with __inline__ formatting 95 * This one is tricky 96 * *This is a list* 97 98 Because this should still be a list item. 99 100 1. This is a list item too 101 2. This list is numbered 102 103 1986\. This shouldn't be a list. 104 105 Code block 106 --------------- 107 108 asdfsdafasdf 109 This is code. 110 Isn't it pretty! 111 112 Quotes 113 --------------- 114 115 > Here is a quote block 116 This quote continues on. Line breaking is OK in markdown 117 > Here it is again 118 > Lah-di-dah 119 > I should really match headings in here too: 120 > ## This is a heading in a block quote