Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. # Markdown Cheatcheat
  2.  
  3. ## Heading
  4.  
  5. ```
  6. # H1
  7. ## H2
  8. ### H3
  9. #### H4
  10. #### H5
  11. ```
  12. <details>
  13. <summary>
  14. Examples
  15. </summary>
  16.  
  17. # H1
  18.  
  19. ## H2
  20.  
  21. ### H3
  22.  
  23. #### H4
  24.  
  25. #### H5
  26.  
  27. </details>
  28.  
  29. ## Code snippet
  30.  
  31. ```js
  32. const myVar = 'Hello world';
  33. ```
  34.  
  35. ## Details (Collapse)
  36.  
  37. <details>
  38. <summary>
  39. Title of the summary
  40. </summary>
  41. This is the content
  42. </details>
  43.  
  44. ```
  45. <details>
  46. <summary>
  47. Title of the summary
  48. </summary>
  49. This is the content
  50. </details>
  51. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement