Markdown - Introduction + Basic Commands
This article will give you brief idea about markdown and its basic commands
What is Markdown?
Markdown is a markup language that is used to format the text on a web page, you can use markdown to write Github Readme.md, technical documentation and many more.
Go to this Link to learn more about what is markdown
Basic Syntax
๐ Heading
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
output
Heading 1
Heading 2
Heading 3
Heading 4
Heading 5
Heading 6
๐ Bold
**bold text**
output
bold text
๐ Italic
*italicized text*
output
italicized text
๐ Blockquote
>This is a blockquote
output
This is a blockquote
๐ List
๐ Ordered List
> 1. First item
2. Second item
3. Third item
output
- First item
- Second item
- Third item
๐ Unordered List
> - First item
- Second item
- Third item
output
- First item
- Second item
- Third item
๐ code
`code`
output
code
๐ Horizontal Rule
---
output
๐ Link
[ Link ]( https://https://navdeep167.hashnode.dev/)
output
๐ Image

output
๐ Table
| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
output
Syntax | Description |
Header | Title |
Paragraph | Text |
๐ Multiple Line Code
For code just place your code between two ' ``` ' triple back commas.
output
for(let i=0; i<10;i++){
console.log(i);
}
ย