# Hello 👋
## What is Markdown?
Markdown is a lightweight and easy-to-use markup language for web writers. Markdown allows you to add formatting elements to plaintext documents and then convert them to structurally valid HTML.
Markdown syntax can be divided into two broad categories. These categories are (1) basic syntax outlined in the original design document and (2) extension of basic syntax for added capability and features.
Refer to [Markdown cheat sheet](https://www.markdownguide.org/cheat-sheet/) for more examples.
## Basic syntax
These elements are defined in the original Markdown design document and can be used in all Markdown applications.
Detailed information and examples can be fount at [basic syntax guide](https://www.markdownguide.org/basic-syntax/).
### Headings
```markdown
# H1
## H2
### H3
#### H4
##### H5
###### H6
```
### Paragraph
```markdown
Here's a paragraph.
```
### Line break
```markdown
Here's another one
with a line break.
```
### Bold
```markdown
**bold text**
__bold also__
```
### Italic
```markdown
*italic text*
_italic also_
```
### Blockquote
```markdown
> blockquote text
```
### Ordered list
```markdown
1. Item 1
1. Item 2
1. Item 2a
1. Item 2b
1. Item 3
```
### Unordered list
```markdown
- Item
- Item
- Indented item
- Indented item
- Item
```
### Inline code
```markdown
This is an inline `code`.
```
### Horizontal rule
```markdown
Here's some text.
---
Here's more text.
```
### Link
```markdown
[title](https://www.example.com)
```
### Image
```markdown
![alt text](image.jpg)
```
## Extended syntax
These elements provide additional features by extending the basic syntax. Not all Markdown applications support these elements and each `Markdown Flavor` differs slightly.
### Table
| Syntax | Description |
| --------- | ----------- |
| Header | Title |
| Paragraph | Text |
```markdown
| Syntax | Description |
| --------- | ----------- |
| Header | Title |
| Paragraph | Text |
```
### Fenced code block
```
{
"firstName": "John",
"lastName": "Doe",
"age": 25
}
```
```
{
"firstName": "John",
"lastName": "Doe",
"age": 25
}
```
### Syntax highlighting
```json
{
"firstName": "John",
"lastName": "Doe",
"age": 25
}
```
```json
{
"firstName": "John",
"lastName": "Doe",
"age": 25
}
```
### Footnote
```
Here's a sentence with a footnote reference. [^1]
[^1]: This is the footnote.
```
### Abbreviation
```markdown
*[SMTP]: Simple Mail Transfer Protocol
The SMTP is a communication protocol for email transmission.
```
### Heading ID
```markdown
### Awesome Heading {#custom-id}
```
### Strikethrough
```markdown
~~~text~~~
```
### Task list
```markdown
- [x] Read the Markdown guide
- [ ] Review the style guide
- [ ] Stay awesome!
```
### Emoji characters
```markdown
👍🤓
```
### Automatic URL linking
```markdown
https://www.example.com
```
### Disabling automatic URL linking
```markdown
`https://www.example.com`
```
### HTML
```html
<div>
<p>HTML test paragraph.</p>
</div>
```
Markdown is a lightweight and easy-to-use markup language for web writers. Markdown allows you to add formatting elements to plaintext documents and then convert them to structurally valid HTML.
Markdown syntax can be divided into two broad categories. These categories are (1) basic syntax outlined in the original design document and (2) extension of basic syntax for added capability and features.
Refer to Markdown cheat sheet for more examples.
These elements are defined in the original Markdown design document and can be used in all Markdown applications.
Detailed information and examples can be fount at basic syntax guide.
# H1
## H2
### H3
#### H4
##### H5
###### H6
Here's a paragraph.
Here's another one
with a line break.
**bold text**
__bold also__
*italic text*
_italic also_
> blockquote text
1. Item 1
1. Item 2
1. Item 2a
1. Item 2b
1. Item 3
- Item
- Item
- Indented item
- Indented item
- Item
This is an inline `code`.
Here's some text.
---
Here's more text.
[title](https://www.example.com)
![alt text](image.jpg)
These elements provide additional features by extending the basic syntax. Not all Markdown applications support these elements and each Markdown Flavor
differs slightly.
Syntax | Description |
---|---|
Header | Title |
Paragraph | Text |
| Syntax | Description |
| --------- | ----------- |
| Header | Title |
| Paragraph | Text |
{
"firstName": "John",
"lastName": "Doe",
"age": 25
}
```
{
"firstName": "John",
"lastName": "Doe",
"age": 25
}
```
{
"firstName": "John",
"lastName": "Doe",
"age": 25
}
```json
{
"firstName": "John",
"lastName": "Doe",
"age": 25
}
```
Here's a sentence with a footnote reference. [^1]
[^1]: This is the footnote.
*[SMTP]: Simple Mail Transfer Protocol
The SMTP is a communication protocol for email transmission.
### Awesome Heading {#custom-id}
~~~text~~~
- [x] Read the Markdown guide
- [ ] Review the style guide
- [ ] Stay awesome!
👍🤓
https://www.example.com
`https://www.example.com`
<div>
<p>HTML test paragraph.</p>
</div>