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

  1. Headers
  2. Emphasis
  3. Lists
  4. Links
  5. Images
  6. Code Blocks
  7. Tables

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:

[Google link](https://www.google.com)

Wikipedia link:

[Wikipedia link](https://en.wikipedia.org/wiki/Main_Page)

Images

Example: Markdown logo

![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 |