This Markdown guide provides a quick overview of all the Markdown syntax elements Markdown is one of the best thing that has happened ever in the software industry useful to write brief description about a project or an article in general to support its idea so that anyone can view your project information in readable format and develop a general understanding about the features used in the project
Basic heading
#Heading1
## Heading2
### Heading3
Output will be as Follows
For Giving Bold Text
**bold text** _bold text_
Output
For giving italicized text
*italicized text* , _italicized text_
Output
For Giving BlockQuote Text
It us used to cover the text in a certain styling useful to highlight anything in the markdown
> blockquote
Output
For Giving Ordered List
Lists out all the elements just like a normal Ordered list
1. First item
2. Second item
3. Third item
3.Fourth Item
3.Fourth Item
Output
Note that in Third ,Fourth ,Fifth Item all items index no is same but Markdown will calculate at as a seperate index
For Giving Unordered List
Random Collection of objects
- First item
- Second item
- Third item
Output
For Giving Horizontol Rule Line
---
Output
StrikeThrough
Strikethrough a certain text useful when one wants to show discounted products price on site
~~The world is flat~~
Output
Use of backticks
Useful to highlight certain words or highlight a specific code snippet in their native language
This `code` is awesome
Output
Code Snippet Example
```
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
```
Output Note that you can type the specific language after backticks in starting point in which the code is written it provides a nice visual highlighting rather than plain text
For Giving Links In Markdown
Highlighting specific links user wants to see more information about the topic upon clicking
[Markdown Guide](https://www.markdownguide.org)
Output
For Giving Images In Markdown
For giving images in markdown you just need to add ! before [ in the link syntax
![alt text](https://www.markdownguide.org/assets/images/tux.png)
Output
For tables in markdown
Tables are not recomended Generally used rarely in markdown
| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
Output
Hope You like My Article