title | description | created | updated |
---|---|---|---|
Markdown |
Markdown is a lightweight markup language which is used to create formatted text using simple text editor. |
2022-10-05 |
2022-10-05 |
# h1 tag
## h2 tag
### h3 tag
#### h4 tag
##### h5 tag
###### h6 tag
*This is italic*
_This is also italic_
**This is bold**
__This is also bold__
This is italic
This is also italic
This is bold
This is also bold
> this is a single block quote.
>> this is a nested block quote.
this is a single block quote.
this is a nested block quote.
1. First item
2. Second item
- First item
- Second item
- First item
- Second item
- First item
- Second item
| topic | Description |
| ----------- | ----------- |
| text1 | Text 2 |
| text3 | Text 4 |
topic | Description |
---|---|
text1 | Text 2 |
text3 | Text 4 |
- [ ] task 1
- [x] task 2
- task 1
- task 2
---
`This is a code`
This is a code
```c
Printf("Hello World!");
Printf("Hello World!");
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
</html>
Normal link Syntax:
[title](https://www.example.com)
Example:
[Github](https://www.github.com)
Emails Syntax:
<email id>
Example:
<[email protected]>
Syntax:
![image name](image address)
Example:
![unnamed (1)](https://user-images.githubusercontent.com/87390353/194129046-d692bf37-034e-4411-afcd-619585abf2f2.jpg)
Syntax: :short code:
Example : :laughing:
😆
Here's a sentence with a footnote. [^1]
[^1]: It is the footnote.
Here's a sentence with a footnote. 1
Syntax:
~~Sentence~~
Example:
~~This sentence is incorrect~~
This sentence is incorrect
Footnotes
-
It is the footnote. ↩