Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Headers
- =======
- Subheadings
- -----------
- # This is an <h1> tag
- ## This is an <h2> tag
- ###### This is an <h6> tag
- Text attributes
- ===============
- *This text will be italic*
- _This will also be italic_
- **This text will be bold**
- __This will also be bold__
- *You **can** combine them*
- `monospace`
- ~~strikethrough~~
- The rain---not the reign---in
- Spain.
- Links
- =====
- [link to Google!](http://google.com)
- 
- Lists
- =====
- Unordered
- ---------
- * Item 1
- * Item 2
- * Item 2a
- * Item 2b
- - Item 1
- - Item 2
- - Item 2a
- - Item 2b
- Ordered
- -------
- 1. Item 1
- 2. Item 2
- 3. Item 3
- * Item 3a
- * Item 3b
- Quotes
- ======
- If you'd like to quote someone:
- > We're living the future so
- > the present is our past.
- > Coffee. The finest organic suspension ever devised... I beat the Borg with it.
- > - Captain Janeway
- Code
- ====
- Inline
- ------
- `var example = true`
- Block
- -----
- if (isAwesome){
- return true
- }
- Code fencing - multiple lines without indentation
- -------------------------------------------------
- ```
- if (isAwesome){
- return true
- }
- ```
- With syntax highlighting, include the language
- ----------------------------------------------
- ```js
- if (isAwesome){
- return true
- }
- ```
- Extras
- ======
- Tasks lists
- -----------
- - [x] This is a complete item
- - [ ] This is an incomplete item
- Emoji
- -----
- :sparkles: :camel: :boom:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement