Markdown Test Page
generated by Pete with ChatGPT GPT-4, 2023-04-23 not perfect, but still worth saving
This is a test page for Markdown.
Table of Contents
Headers
# H1
## H2
### H3
#### H4
##### H5
###### H6
Emphasis
- Italic:
*text*
or_text_
- Bold:
**text**
or__text__
- Italic and Bold:
***text***
or___text___
Lists
- Unordered List:
* Item 1
* Item 1.1
* Item 2
- Ordered List:
1. Item 1
1. Item 1.1
2. Item 2
Links
[Google link](https://www.google.com)
[Wikipedia link](https://en.wikipedia.org/wiki/Main_Page)
Images
Example:
![Markdown logo](https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/Markdown-mark.svg/30px-Markdown-mark.svg.png)
Code Blocks
Inline code: `hello()`: hello()
Multi-line code:
def test_func(x):
return x * 2
Syntax-highlighted code:
def test_func(x):
return x * 2
Tables
Title 1 | Title 2 | Title 3 |
---|---|---|
Row 1.1 | Row 1.2 | Row 1.3 |
Row 2.1 | Row 2.2 | Row 2.3 |
Row 3.1 | Row 3.2 | Row 3.3 |
| Title 1 | Title 2 | Title 3 |
|---------|---------|---------|
| Row 1.1 | Row 1.2 | Row 1.3 |
| Row 2.1 | Row 2.2 | Row 2.3 |
| Row 3.1 | Row 3.2 | Row 3.3 |