Heading 1
This is a paragraph under a level 1 heading.
Heading 2
This is a paragraph under a level 2 heading.
Heading 3
This is a paragraph under a level 3 heading.
Heading 4
This is a paragraph under a level 4 heading.
Heading 5
This is a paragraph under a level 5 heading.
Heading 6
This is a paragraph under a level 6 heading.
Paragraphs and Text Formatting
This is a normal paragraph. It can contain bold text, italic text, bold italic text, strikethrough, inline code
, and link text.
This is another paragraph to test spacing between paragraphs.
Blockquotes
This is a simple blockquote.
Blockquotes can contain multiple paragraphs.
This is an example of a nested blockquote:
This is nested quote content.
Multiple levels of nesting are possible.
Lists
Unordered List
- First item
- Second item
- Nested item 1
- Nested item 2
- Even deeper nested item
- Third item
Ordered List
- First item
- Second item
- Nested ordered item 1
- Nested ordered item 2
- Even deeper nested item
- Third item
Task List (Checkbox)
- Completed task
- Incomplete task
- Another completed task
- Nested task list
- Subtask 1 (done)
- Subtask 2 (not done)
- Subtask 3 (done)
Definition List
- Term 1
- This is the definition for term 1.
- Term 2
- This is the definition for term 2.
- Terms can have multiple definitions.
Code
Inline Code
This is a paragraph with console.log('Hello World')
inside.
Code Blocks
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet('World');
def fibonacci(n):
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
print(fibonacci(10))
.prose {
max-width: none;
color: var(--tw-prose-body);
}
.prose h1 {
font-size: 2.25rem;
font-weight: 700;
}
Tables
Left Align | Center Align | Right Align |
---|---|---|
Content 1 | Content 2 | Content 3 |
Longer content | Medium | Short |
Data A | Data B | Data C |
Horizontal Rule
Images

Links
This is a regular link.
This is a link with title.
This is a reference-style link: Reference Link
Footnotes
This is a paragraph with a footnote1.
Here is another footnote2.
Highlighted Text
This is a paragraph with ==highlighted text==.
Superscript and Subscript
H2O is the chemical formula for water.
E = mc^2^ is Einstein’s mass-energy equation.
Keyboard Keys
Press Ctrl + C to copy text.
Abbreviations
HTML is the abbreviation for HyperText Markup Language.
*[HTML]: HyperText Markup Language
Math Formula (if KaTeX supported)
Inline formula: $E = mc^2$
Block formula:
$$ \int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi} $$
Admonitions (if supported)
Note
This is a note.
Tip
This is a tip.
Important
This is important information.
Warning
This is a warning.
Caution
This is a caution.
Details (if supported)
Click to expand details
This is the collapsed detailed content.
You can include any Markdown syntax here:
- List item
- Bold text
Code
Mixed Content Test
This paragraph contains multiple formats: bold, italic, code
, link, strikethrough, ==highlight==.
Complex List
- First item with bold text
- Nested item with
code
- Another nested item with link
- Nested item with
- Second item with italic text
- Ordered nested item
- Another ordered nested item
- Third item with
strikethroughtext
Complex Table
Feature | Status | Description |
---|---|---|
Bold | ✅ | Supports bold text |
Italic | ✅ | Supports italic |
Code | ✅ | Supports inline code |
Link | ✅ | Supports links |
❌ | Needs testing |
This test document covers most common Markdown syntax and can be used to verify the completeness and aesthetics of prose styles.
Comments