Caminhoneiro

md sample

May 18th, 2021 (edited)
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. # Primeiro
  2.  
  3. ## Segundo
  4.  
  5. # Primeiro de novo
  6.  
  7. ##### Not so relevant
  8.  
  9.  
  10. <!--Italiccs-->
  11.  
  12. *This text* is italic
  13.  
  14. _This also_ is italica
  15.  
  16. <!--strong-->
  17.  
  18. **STRONG**
  19.  
  20. ~~Dont say that shit~~
  21.  
  22. horizontal rule
  23.  
  24. ---
  25.  
  26. ___
  27.  
  28. >This is a quote
  29.  
  30. <!--Links-->
  31.  
  32. [Traversy media](http://www.criticalmanufacturing.com)
  33.  
  34. <!-- UL -->
  35.  
  36. * Item 1
  37. * Item 2
  38. * Item 3
  39. * Nested
  40. * Nextd
  41. * Ti much deep
  42. * Breath
  43. <!-- inline-->
  44.  
  45. <p>This is a paragraph</p>
  46.  
  47. <!-- Images -->
  48.  
  49. ![Image](https://www.trendsinternational.com/media/catalog/product/cache/1/image/1800x/040ec09b1e35df139433887a97daa66f/r/p/rp17978-1.jpg)
  50.  
  51. <!-- git hub markdown -->
  52. ```
  53. npm install
  54.  
  55. npm start
  56.  
  57. npm start
  58. ```
  59. ```bash
  60. npm install
  61.  
  62. npm start
  63.  
  64. npm start
  65. ```
  66.  
  67. <!--Code blocks-->
  68. ```c#
  69. Vector3 MoveOnCamera(vector3 currentPos, Transform cam){
  70. currentPos = this.transform.position;
  71. currentPos =currentPos + (currentPos - cam.transform.position);
  72. return currentPos;
  73. }
  74. ```
  75.  
  76.  
  77. <!-- Tables -->
  78.  
  79. |Name | Nickname |
  80. |-----|-------|
  81. |Mario|Behind|
  82. |Luigi|Inside|
  83.  
  84. <!-- Task -->
  85.  
  86. * [] Do it
  87. * [x] Dont do it
  88. * [] Oh no
  89.  
  90. ## collapsible markdown?
  91.  
  92. <details><summary>CLICK ME</summary>
  93. <p>
  94.  
  95. #### yes, even hidden code blocks!
  96.  
  97. ```python
  98. print("hello world!")
  99. ```
  100.  
  101. </p>
  102. </details>
  103.  
Add Comment
Please, Sign In to add comment