Markdown Cheatsheet

less than 1 minute read

Markdown cheatsheet image

Heading

# H1
### H3
.
.
###### H6

H1

H3

. .

H6

Bold

**bold text**

bold text

Italic

*italicized text*

italicized text

Blockquote

> blockquote

blockquote

Ordered List

1. First item
2. Second item
3. Third item
  1. First item
  2. Second item
  3. Third item

    Unordered List

    - First item
    - Second item
    - Third item
    
    • First item
    • Second item
    • Third item

Code

`code`

code

Horizontal Rule

---

[My Website](https://rajasekharguptha.github.io)

My Website

Image

![Image](/assets/sampleimage.jpg)

Image

Table

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

| Syntax | Description | | ———– | ———– | | Header | Title | | Paragraph | Text |

Fenced Code Block

    {
    "Name": "Name",
    "mail": mail
     mail
    }

Heading ID

###  Heading {#id}

Heading

Strikethrough

~~The line is striked.~~

The line is striked.

Task List

- [ ] Not Checked
- [x] Checked
  • Not Checked
  • Checked

Updated: