Markdown Cheatsheet

·

2 min read

As a developer, we have to put a Readme file for UI developers or another developer to understand about the repo so we use the markdown file. On to the GitHub you often see Readme.md file, Yes this is the Markdown file I am talking about in this blog I will quickly walk you through the cheat sheet to refer back. Let's get started.

Headings

# Your Heading 1

## Your Heading 2

### Your Heading 3

#### Your Heading 4

##### Your Heading 5

###### Your Heading 6

Output

Your Heading 1

Your Heading 2

Your Heading 3

Your Heading 4

Your Heading 5
Your Heading 6

Text Decorations

Normal Text goes like that only

**Bold**

_Italic_

~~Strikethrough text~~

**_Strong emphasized text_**

Output

Normal Text goes like that only

Bold

Italic

Strikethroughtext

Strong emphasized text


Lists

Unordered List

- Bullet list
  - Nested bullet
- Bullet list item 2

Output

  • Bullet list
    • Nested bullet
  • Bullet list item 2

Ordered List

1. A numbered list
   1. A nested numbered list
2. Which is numbered

Output

  1. A numbered list
    1. A nested numbered list
  2. Which is numbered

Links

[My Blog Website](https://shubhamvscode.hashnode.dev "Shubham's Blog")

Output

[My Blog Website](shubhamvscode.hashnode.dev "Shubham's Blog")


Link you Images

![LCO](https://learncodeonline.in/mascot.png "Title is optional")

You can also give a realtive path like this ./images/logo.png

Output

LCO


Table

| Header       | Header       |
| ------------ | ------------ |
| Content Cell | Content Cell |
| Content Cell | Content Cell |

Output

HeaderHeader
Content CellContent Cell
Content CellContent Cell

Blockquote

> Blockquote Here you Can write any quote you want to share with others
>
> > Nested Blockquote

Output

Blockquote Here you Can write any quote you want to share with others

Nested Blockquote


Foldable Text

<details>
    <summary>Title 1</summary>
    <p>Content 1</p>
    <p>Content 1</p>
    <p>Content 1</p>
    <p>Content 1</p>
</details>

Output

Title 1

Content 1

Content 1

Content 1

Content 1


Linebreak

---

Output


You can refer back and Bookmark this website for referring

If you want me to talk about any specific topic please let me know in the comment section

Thanks

Did you find this article valuable?

Support Shubham by becoming a sponsor. Any amount is appreciated!