One of the most popular markup languages nowadays is markdown. Markdown is a lightweight markup language which is used to style plain text. It is easy to use and has various syntaxes for formatting text.
# for h1
## for h2 and so on.
*Italics*
**Bold**
* item1
* item2
1. item1
1. item2
![Alternative text](url or image path)
[name of website](url)
> hey my name is aniket
`const count = 10;`
Github has its own markdown syntax which gives an useful set of features to the users and makes their work easy.
```
function alert(msg){
if(msg){
outputDiv.innerText = msg;
}}
```
```javascript
function alert(msg){
if(msg){
outputDiv.innerText = msg;
}}
```
It is used in issues. Helps to breakdown the issue into small tasks.
- [ ] incomplete
- [x] complete
Used to refer to issue or pull requests. It gets linked to the specific issue or pull request .
#64
On mentioning a username, the user will be notified about the comment.
@username
Whenever something is put inside double tildes, it gets crossed out.
~~striked~~