# Markdown Cheat Sheet A simple cheat sheet for you day to day Markdown needs ## Headers ```Markdown # This is an

tag ## This is an

tag ### This is an

tag #### This is an

tag ##### This is an

tag ###### This is an
tag ``` ## Text styling *Italic text:* ```Markdown *Text in italic* _Text in italic_ ``` ___ **Bold text:** ```Markdown **Text in bold** __Text in bold__ ``` ___ > Blockquote text: ```Markdown > This text will be in blockquote and also supports *italic* and **bold** text ``` ___ **Lists** *Unordered:* ```Markdown * List item 1 * List item 2 * List item 2.1 ``` *Ordered:* ```Markdown 1. List item 1 2. List item 1 * List item 2.1 ``` *Task lists:* ```Markdown - [x] Complete task item - [ ] Incomplete task item - [x] These also support *italic* ,**bold*, @mentions, #refs and tags ``` ___ **Break lines** In order to add break lines to markdown you can use the \
tag or double spaces after a word. ```Markdown This is a sample
text with a break line You can also add break lines with a double spaces ``` ___ **Backslash escapes** Escape formating of \* and other characters on the text. ```Markdown \*literal asterisks\* ``` ___ **Links** ```Markdown [Github](https://github.com/) ``` ___ **EMOJI** A list of all emojis supported can be found [here](www.emoji-cheat-sheet.com) ```Markdown :+1: :sparkles: :camel: :tada: :rocket: :metal: :octocat: ``` ## Images ![Placeholder image](https://via.placeholder.com/300x150/?text=Placeholder%20image) ```Markdown ![Alt text](http://image.url) ``` ## Tables Header 1 | Header 2 ----------|------------ Cell 1 | Cell 2 Column 1 | Column 2 ```Markdown Header 1 | Header 2 ----------|------------ Cell 1 | Cell 2 Column 1 | Column 2 ``` ## Code Blocks You can wrap code in markdown using ``` and adding the language identifier(this is optional but will give you sintax highlight) ``` ```javascript console.log('Hello world'); ```. ```