Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. markdown cheatsheet
  2.  
  3. ## Text
  4.  
  5. ### Heading
  6. ```
  7. # H1
  8. ## H2
  9. ### H3
  10. ```
  11.  
  12. ### Italic
  13. ```
  14. *text*
  15. ```
  16.  
  17. ### Blockquote
  18. ```
  19. > text
  20. ```
  21. > text
  22.  
  23. ### br
  24. ```
  25. text
  26. text
  27. ```
  28.  
  29.  
  30.  
  31. ## List
  32.  
  33. ### Ordered
  34. ```
  35. 1. text
  36. 2. text
  37. 3. text
  38. ```
  39.  
  40. 1. text
  41. 2. text
  42. 3. text
  43.  
  44. ### Disc
  45. ```
  46. - text
  47. - text
  48. - text
  49. - text
  50. ```
  51.  
  52. - text
  53. - text
  54. - text
  55. - text
  56.  
  57.  
  58. ## Link
  59. ```
  60. [Link text](URL)
  61. ```
  62.  
  63. ## Image
  64. ```
  65. ![alt text](image.jpg)
  66. ```
  67.  
  68. ## Table
  69. ```
  70. | th text1 | th text2 | th text3 |
  71. | :--- | :----: | ---: |
  72. | td text | td text | td text |
  73. | td text | td text | td text |
  74. | td text | td text | td text |
  75. ```
  76. | th text1 | th text2 | th text3 |
  77. | :--- | :----: | ---: |
  78. | td text | td text | td text |
  79. | td text | td text | td text |
  80. | td text | td text | td text |
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement