Advertisement
kgizdov

Markdown Sample

Jun 8th, 2015
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. Headers
  2. =======
  3.  
  4. Subheadings
  5. -----------
  6.  
  7. # This is an <h1> tag
  8. ## This is an <h2> tag
  9. ###### This is an <h6> tag
  10.  
  11. Text attributes
  12. ===============
  13.  
  14. *This text will be italic*
  15. _This will also be italic_
  16.  
  17. **This text will be bold**
  18. __This will also be bold__
  19.  
  20. *You **can** combine them*
  21.  
  22. `monospace`
  23.  
  24. ~~strikethrough~~
  25.  
  26. The rain---not the reign---in
  27. Spain.
  28.  
  29. Links
  30. =====
  31.  
  32. [link to Google!](http://google.com)
  33.  
  34. ![Image of Yaktocat](https://octodex.github.com/images/yaktocat.png)
  35.  
  36. Lists
  37. =====
  38.  
  39. Unordered
  40. ---------
  41.  
  42. * Item 1
  43.  
  44. * Item 2
  45. * Item 2a
  46. * Item 2b
  47.  
  48. - Item 1
  49.  
  50. - Item 2
  51. - Item 2a
  52. - Item 2b
  53.  
  54. Ordered
  55. -------
  56.  
  57. 1. Item 1
  58.  
  59. 2. Item 2
  60.  
  61. 3. Item 3
  62. * Item 3a
  63. * Item 3b
  64.  
  65. Quotes
  66. ======
  67.  
  68. If you'd like to quote someone:
  69.  
  70. > We're living the future so
  71. > the present is our past.
  72.  
  73. > Coffee. The finest organic suspension ever devised... I beat the Borg with it.
  74. > - Captain Janeway
  75.  
  76. Code
  77. ====
  78.  
  79. Inline
  80. ------
  81.  
  82. `var example = true`
  83.  
  84. Block
  85. -----
  86.  
  87. if (isAwesome){
  88. return true
  89. }
  90.  
  91. Code fencing - multiple lines without indentation
  92. -------------------------------------------------
  93.  
  94. ```
  95. if (isAwesome){
  96. return true
  97. }
  98. ```
  99.  
  100. With syntax highlighting, include the language
  101. ----------------------------------------------
  102.  
  103. ```js
  104. if (isAwesome){
  105. return true
  106. }
  107. ```
  108.  
  109. Extras
  110. ======
  111.  
  112. Tasks lists
  113. -----------
  114.  
  115. - [x] This is a complete item
  116.  
  117. - [ ] This is an incomplete item
  118.  
  119. Emoji
  120. -----
  121.  
  122. :sparkles: :camel: :boom:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement