2.0 KiB
2.0 KiB
title, date, tags, summary
| title | date | tags | summary | |
|---|---|---|---|---|
| Markdown Testing | 2025-06-17 |
|
Testing Markdown Features |
Markdown Feature Test
Table of Contents
- Headings
- Text Formatting
- Lists
- Links
- Images
- Code
- Blockquotes
- Horizontal Rule
- Tables
- Task Lists
- HTML in Markdown
Headings
H1
H2
H3
H4
H5
H6
Text Formatting
- Bold
- Italic
- Bold and Italic
Strikethrough- Underline (HTML)
- ==Highlight (non-standard)==
Lists
Unordered
- Item 1
- Subitem 1.1
- Subitem 1.1.1
- Subitem 1.1
- Item 2
Ordered
- First item
- Second item
- Subitem
- Subitem
- Third item
Links
Images
Code
Inline Code
Here is inline code.
Code Block (fenced)
def hello\_world():
print("Hello, world!")
Code Blog (test)
def hello():
return true;
Code Block (indented)
def indented_example():
return True
Blockquotes
This is a blockquote.
Nested blockquote.
Horizontal Rule
Tables
| Syntax | Description |
|---|---|
| Header | Title |
| Cell | Content |
Task Lists
- Task 1
- Task 2
- Subtask
- Subtask
HTML in Markdown
This is raw HTML in Markdown.
End of Markdown Feature Test
