Markdown is plain text formatting markup language that is used to add formatted elements to plain text files. It is a very helpful tool web developers, it's common use is to create beautiful and creative "README" files for our projects.
Following are the some of the most commonly used markdown syntaxes and their results.
Heading
# Heading1
## Heading2
### Heading3
Result:
Heading1
Heading2
Heading3
Text
bold text**bold text** *italicized text* > blockquote
italicized text
blockquote
List
Ordered List
1. First item
2. Second item
3. Third item
- First item
- Second item
- Third item
Unordered List
- First item
- Second item
- Third item
- First item
- Second item
Third item
Code
`code`
code
Line
---
Link
[title](https://www.example.com)
Image
![alt text](image.jpg)