Markdown Cheat Sheet Part-1
part-1

Search for a command to run...

Series
Complete tutorial to write Markdown.
part-1

Links There are different ways to create links in Markdown. [This is inline-style link](https://github.com/Garima-sharma814) [This is referenced link][I am referred here] [You can also use numbers in referenced link][1] Can be empty as well [link it...

Images There are 2 ways to add an image to the Markdown. Inline style Referenced style Inline Style:  Referenced Style: ![First image][I'm referenced] - [I'm referenced]: http://picsum.photos/200/200 M...

Code and Syntax Highlighting Code block is the part of Markdown spec, but code highlighting isn't. However many renderer's like GitHub and Markdown Here supports Code and Syntax Highlighting. Markdown Here supports a lot of languages. To see the comp...
