71 lines
938 B
Markdown
71 lines
938 B
Markdown
---
|
|
title: Markdown Elements
|
|
date: 19-02-2023
|
|
---
|
|
|
|
# Hi ~~Mars~~ Venus! 1
|
|
|
|
## Hi ~~Mars~~ Venus! 2
|
|
|
|
### Hi ~~Mars~~ Venus! 3
|
|
|
|
#### Hi ~~Mars~~ Venus! 4
|
|
|
|
##### Hi ~~Mars~~ Venus! 5
|
|
|
|
###### Hi ~~Mars~~ Venus! 6
|
|
|
|
_italics_
|
|
|
|
**bold**
|
|
|
|
> blockquote
|
|
|
|
1. Ordered
|
|
2. Lists
|
|
|
|
- unordered
|
|
- lists
|
|
|
|
`code`
|
|
|
|
[A Link](../hello.md)
|
|
|
|

|
|
|
|
| Syntax | Description |
|
|
| --------- | ----------- |
|
|
| Header | Title |
|
|
| Paragraph | Text |
|
|
|
|
---
|
|
|
|
# fenced code block
|
|
|
|
```
|
|
{
|
|
"firstName": "John",
|
|
"lastName": "Smith",
|
|
"age": 25
|
|
}
|
|
```
|
|
|
|
<!-- Here's a sentence with a footnote. [^1]
|
|
[^1]: This is the footnote. -->
|
|
|
|
<!-- ### My Great Heading {#custom-id} -->
|
|
<!--
|
|
term
|
|
: definition -->
|
|
|
|
<!-- - [x] Write the press release
|
|
- [ ] Update the website
|
|
- [ ] Contact the media -->
|
|
|
|
<!-- That is so funny! :joy: -->
|
|
|
|
<!-- I need to highlight these ==very important words==. -->
|
|
|
|
<!-- H~2~O -->
|
|
|
|
<!-- X^2^ -->
|