Overview
This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements this make easier in your markdown code for readme files in git.
Basic Syntax of Markdown
Element | Markdown Syntax |
Heading | # H1, ## H2, ### H3...H6 |
Italic use_ _ or * * | Itlaic or One more Italic |
Italic bold use __* *__ | Italic bold |
Bold use__ __ or ** ** | Bold content |
Strikethrough use~~ ~~ | This is Strike Through in MD |
Block quote use> | > This is Block quote |
Order list | 1. Order 1, 2. Order 2, 3. Order 3 |
Un ordered list | - ul 1, - ul2, - ul 3 |
Break line use*** | * |
Code Highlight use(``back tick ) | let var const |
Code snippet use b/w inside of 3 back ticks(``````) | javascript for (let i=0; i>=10; i++); |
External links for hypertext use[Your text] and link (your link) "Google" | |
External Images for hypertext use ![Your hyper text] and link (hyper link) | |
Definition List | term : definition |
Check Marks | [x] I am a Check mark |
To create a table use Below syntax
Step-1--> | Tables| | Syntax | Description |
Step-2--> | ----------- | ----------- |
Step-3--> | Header | Title |
Markdown Cheat sheet--> MD cheat sheet