Short introduction of Markdown
Markdown is a lightweight markup language created by John Gruber and Aaron Swartz in 2004. It is widely used for blogging, instant messaging, online forums, collaborative software, documentation pages, and readme files. Markdown was inspired by pre-existing conventions for marking up plain text in email and Usenet posts, such as the earlier markup languages setext, Textile, and reStructuredText.
Learning Markdown is very essential in open source because you'll see README.md file on GitHub in every project, so you must have to learn it.
In the above picture, you can see the README.md file which is here a profile's special readme file that everyone gets with the same username repository.

This is for the images

- Checked and unchecked lists - GitHub's extra flavor
- [x] checked
- [ ] unchecked
-
Adding emoji
Try it on GitHub or if you want to use it in VS Code install the
:joy:
Recommended 😅: Use emoji directly bro, don't need to write 😂 and then get the emoji, today UTF 16 is supported everywhere.
- Making tables
| Title | description |
| --- | --- |
| Open Source | Open Source etiquette |
- Draw a line
---
Wrap Up:
Website to convert simple text to markdown format
Always create a README.md file (Benefits)
- When you create a new repository GitHub gives an option to create a README.md file along with that readme file.
- So README file like a cover of a book, means it shows or describes what is inside your repository.
- It just takes 10 - 15 minutes to make your README.md file and it increases your profile value on GitHub if anyone visits your profile that person will be impressed by your work
Top comments (2)
I was lowkey wondering how to add emojis - turns out it's so simple 😳
Yeah