Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Primeiro
- ## Segundo
- # Primeiro de novo
- ##### Not so relevant
- <!--Italiccs-->
- *This text* is italic
- _This also_ is italica
- <!--strong-->
- **STRONG**
- ~~Dont say that shit~~
- horizontal rule
- ---
- ___
- >This is a quote
- <!--Links-->
- [Traversy media](http://www.criticalmanufacturing.com)
- <!-- UL -->
- * Item 1
- * Item 2
- * Item 3
- * Nested
- * Nextd
- * Ti much deep
- * Breath
- <!-- inline-->
- <p>This is a paragraph</p>
- <!-- Images -->
- 
- <!-- git hub markdown -->
- ```
- npm install
- npm start
- npm start
- ```
- ```bash
- npm install
- npm start
- npm start
- ```
- <!--Code blocks-->
- ```c#
- Vector3 MoveOnCamera(vector3 currentPos, Transform cam){
- currentPos = this.transform.position;
- currentPos =currentPos + (currentPos - cam.transform.position);
- return currentPos;
- }
- ```
- <!-- Tables -->
- |Name | Nickname |
- |-----|-------|
- |Mario|Behind|
- |Luigi|Inside|
- <!-- Task -->
- * [] Do it
- * [x] Dont do it
- * [] Oh no
- ## collapsible markdown?
- <details><summary>CLICK ME</summary>
- <p>
- #### yes, even hidden code blocks!
- ```python
- print("hello world!")
- ```
- </p>
- </details>
Add Comment
Please, Sign In to add comment