Markdown - Introduction + Basic Commands

This article will give you brief idea about markdown and its basic commands

ยท

2 min read

Markdown - Introduction + 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

  1. First item
  2. Second item
  3. 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 ]( https://https://navdeep167.hashnode.dev/)

output

Link

๐Ÿ‘‰ Image

![LCO](https://learncodeonline.in/mascot.png)

output

LCO

๐Ÿ‘‰ Table

| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |

output

SyntaxDescription
HeaderTitle
ParagraphText

๐Ÿ‘‰ 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);
}
ย