Title here
Summary here
Markdown are a simple and functional text file that is suitable to be used to make article.
This Markdown cheat sheet provides a quick overview of all the Markdown syntax elements edited from The Markdown Guide!
Use some # to indicate headings]
# Header 1
## Header 2
**bold text**
--- (This is a horizontal line)
*italicized text*
bold text
italicized text
>blockquote message
blockquote
1. First item
2. Second item
3. Third item
- First item
- Second item
- Third item
- x
- y
`code` or ``` multiple line codes```
code
[Markdown Guide](https://www.markdownguide.org)

These elements extend the basic syntax by adding additional features. Not all Markdown applications support these elements.
| Syntax | Description |
| ----------- | ----------- |
| Header | Title |
| Paragraph | Text |
Syntax | Description |
---|---|
Header | Title |
Paragraph | Text |
Here's a sentence with a footnote. Look at the footnote at the bottom of the page. [^1]
[^1]: This is the footnote.
Here’s a sentence with a footnote. Look at the footnote at the bottom of the page. 1
#### My Great Heading {#custom-id}
term
: definition
~~The world is flat.~~
The world is flat.
- [x] Write the press release
- [ ] Update the website
- [ ] Contact the media
That is so funny! :joy:
That is so funny! 😂 (See also Copying and Pasting Emoji)
I need to highlight these ==very important words==.
I need to highlight these ==very important words==.
H~2~O X^2^
H~2~O X^2^
```json
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
``` (This should be indent to the left)
{
"firstName": "John",
"lastName": "Smith",
"age": 25
}
This is the footnote. ↩︎