Everything You Need to Know About Markdown...
A Detail Guide On How to make Beautiful readme.md file
Markdown Cheat Sheet
Headings
To Give Heading we use #
sign in readme.md
file
# Heading 1
## Heading 2
## Heading 3
Output
Heading 1
Heading 2
Heading 3
BOLD
To Give BOLD to text we use *
sign in readme.md
file
**bold text**
Output
- bold text
ITALIC
*italicized text*
- italicized text
Blockquote
> blockquote
blockquote
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
` <html>
<head>
<title>Test</title>
</head>
<body>
<h1>Hello World...!!</h1>
</body>
</html>`
Output
<html>
<head>
<title>Test</title>
</head>
<body>
<h1>Hello World...!!</h1>
</body>
</html>
Link
[Google](https://www.google.com)
Output
Image
![react-logo](https://reactjs.org/logo-og.png)
// Or also can add image from your local directory
![react-logo](.logo-og.png)
Output
Tables
| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
Output
Syntax | Description |
Header | Title |
Paragraph | Text |
| Syntax | Description | Test Text |
| :--- | :----: | ---: |
| Header | Title | Here's this |
| Paragraph | Text | And more |
Syntax | Description | Test Text |
Header | Title | Here's this |
Paragraph | Text | And more |
This are all Markdown syntax which can make your readme.md file look more beautyful..!!
Thank You