- It makes your submissions easier to read and understand.
- It seperates questions and answers clearly to avoid confusion.
- It looks so much nicer.
Just like in html you can create headings 1-6. Instead of <h1>
etc... you use the hash symbol up to 6 times depending of the size you would like.
You can also create ordered and unordered lists!
- Ordered lists are simply numbered
- Bullet points are creates with the asteriks (*)
There are also a few more very important markdown tricks!
- You can make words bold with either two asteriks ( ** ) before and after the work or double underscores on either side ( __ )
- You can also make words italic with the use of a single asteriks ( * ) or a single underscore ( _ ) on either side.
- Code block is essential to properly formating your git hub gists. With the use a a back-tick on either end of a code snippet it makes it readable. Without the back-ticks your code snippet is simply ommmitted in your text.
<h1>
< this snippet is surrounded by those back-ticks. - Inline code is also surrounded by back-ticks!
It will look like this
..
You can also add images to your mardown text by adding the following code:
![alt text] (insert link here) "describe image here"
This has been a simple beginners guide to Markdown!