Beginner Guide to Markdown
Let me introduce you to markdown first,

Markdown is made by John Gruber, you can use markdown to write blogs, texts, books and practically 100% of your writing work in a single format and you can easily distribute it in Word, PDFs, EPUBs, HTML, and many other formats.
Some pro’s of markdown:
- Easy and simple formatting.
- Can be converted to tons of different formats easily.
- Platform and app independent format. (you just need a simple text editor on any PC ever existed on this planet)
- Pleasant syntax and easy to learn.
I was introduced to markdown by Github and after that I’m just amazed from it because of it’s simple syntax and sheer power.
Learning basic Markdown syntax:
- Paragraphs: Everything you write are just wrapped in paragraphs. You can separate paragraphs by leaving a line between them.
Hi this is simple paragraph
and this is also the part of line.Yeah, this is another paragraph.- Headings: you can create headings with number of hashes
#. The more the number of hashes the lesser the power of heading.
# Main Heading
## Sub Heading
### may be used as topic heading
#### sub-topic headings
##### another heading
###### smallest heading





