README file is a markdown file which helps to describe your projects on github.
A README is like the face of your project.
If you are into software development you might have headed over to github and explored some repositories. In these repositories developers upload there programs and software to share it with community.
In most of the repositories you might have seen a README.md file, This Readme file is a markdown file which is used to describe the info, working and installation of the project. If you are a developer and upload projects on github then you should know how to write a good readme.md file to make your projects standout.
Markdown is plain text formatting syntax used for writing purposes on the internet. It is a text-to-html conversion tool which allows you to write easy-to-read and easy-to-write plain text format , then converts it to structurally valid html.
Markdown is widely used in blogging, online Forums, collabrative forums and documentation purposes.
Markdown have some specefic syntax to format the text and it should be written properly to be converted into structured HTML.
To write Headers is Markdown file we use # symbol.
Syntax
# Header 1 - this will create a h1 heading.
## Header 2 - this will create a h2 heading.
### Header 3 - this will create a h1 heading.
This Syntax is Used to make text bold or italic.
Syntax
_text1_ - this will make the text italic.
**text2** - this will make the text bold.
~~text3~~ - this will create a strikethrough text
This Syntax is used to create ordered or unordered lists.
Syntax
To Create Ordered Lists
1. abc
2. xyz
3. uvw
To Create Unordered Lists
- abc
- xyz
- uvw
This Syntax is Used to Create links in markdown file.
Syntax
[Text you want to show](link url)
[Send me a connection request on linkedin](https://linkedin.com/in/aditya-panda)
This Syntax is Used to add Image, Screenshot or gif to your markdown file.
Syntax
Waterfall Image


This Syntax is Used to add Code Blocks. You can also specify your programming language so texts get highlighted.
Syntax
For Inline code use (`)
`const name="Aditya"`
For blocks of Code
```
const name = "Aditya";
console.log(name)
```
This Syntax is Used to Write quotes in markdown file.
Syntax
> Keep Smiling and Work Harder
Yeah that's it by me!!!. If you like this blog do share it with your friends so that they can also learn about README file.
Also folow me on linkedin, twitter or github for more tech updates.