Example Article
Markdown Syntax Guide
btw this article was made by chatgpt, which is bad at doing the things you tell it
to do, so this article kinda half-works, but honestly just look up a markdown guide.
There are plenty of great ones, and this article only exists because I needed an example article to put here.
This document showcases various Markdown features.
1. Headings
H1 Heading
H2 Heading
H3 Heading
H4 Heading
H5 Heading
H6 Heading
2. Emphasis
Italic text
Also italic text
Bold text
Also bold text
Bold and italic text
Also bold and italic
~~Strikethrough~~
3. Lists
Unordered List
- Item 1
- Item 2
- Sub-item 2.1
- Sub-item 2.2
- Item 3
Ordered List
- First item
- Second item
- Sub-item 2.1
- Sub-item 2.2
- Third item
4. Links
This is a link that opens in a new tab
5. Images
6. Code Blocks
Inline Code
Here is some inline code: print("Hello, world!")
Code Block (Indented)
def hello():
print("Hello, world!")
Code Block (Fenced)
python
def hello():
print("Hello, world!")
7. Blockquotes
This is a blockquote.
This is a nested blockquote.
8. Tables
| Column 1 | Column 2 | Column 3 | |----------|----------|----------| | Row 1 | Data 1 | Data 2 | | Row 2 | Data 3 | Data 4 | | Row 3 | Data 5 | Data 6 |
9. Horizontal Rule
Below is a horizontal rule:
10. Task Lists
- [x] Completed task
- [ ] Incomplete task
11. Footnotes
Here is a sentence with a footnote.[^1]
[^1]: This is the footnote.
12. HTML in Markdown
This text is red and written using HTML.
13. Escaping Characters
To display *
or _
without formatting, use a backslash:
*Not italicized*
_Not italicized_
End of Markdown Syntax Guide.