Test: All Markdown Features
This test fixture exercises all markdown features to ensure styling is consistent.
Text Formatting
This paragraph contains bold text, italic text, bold and italic, inline code,
strikethrough text, and a link to nowhere.
You can also use bold and italic with underscores.
Lists
Unordered Lists
- First item
- Second item
- Nested item
- Another nested item
- Third level nesting
- Back to first level
Ordered Lists
- First ordered item
- Second ordered item
- Nested ordered item
- Another nested item
- Back to first level
Mixed Lists
- Ordered item
- Unordered nested
- Another unordered
- Another ordered
- Nested ordered
- More nested
Code Blocks
With Syntax Highlighting
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
x := 42
if x > 0 {
fmt.Println("Positive")
}
}
def fibonacci(n):
"""Calculate Fibonacci number"""
if n <= 1:
return n
return fibonacci(n-1) + fibonacci(n-2)
result = fibonacci(10)
print(f"Result: {result}")
#!/bin/bash
# Test script
for i in {1..5}; do
echo "Iteration $i"
sleep 1
done
Plain Code Block
No syntax highlighting
Just plain monospace text
Preserves spacing
Blockquotes
This is a blockquote. It can span multiple lines.
It can also contain formatting and
code.
Nested blockquotes:
This is nested
This is more nested
Tables
Simple Table
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Data A1 | Data B1 | Data C1 |
| Data A2 | Data B2 | Data C2 |
| Data A3 | Data B3 | Data C3 |
Table with Alignment
| Left Aligned | Center Aligned | Right Aligned |
|---|---|---|
| Left | Center | Right |
| Lorem | Ipsum | Dolor |
| Sit | Amet | 123.45 |
Complex Table with Formatting
| Feature | Support | Notes |
|---|---|---|
| Bold | ✓ | Full support |
| Italic | ✓ | inline code works |
| ✓ | Links work too |
Horizontal Rules
Links
Images
Definition Lists (if supported)
- Term 1
- Definition 1
- Term 2
- Definition 2a
- Definition 2b
Task Lists (if supported)
- Completed task
- Incomplete task
- Another completed task
- Nested incomplete
- Nested complete
Footnotes (if supported)
This sentence has a footnote1.
This one has another footnote2.
Inline HTML (if supported)
Ctrl + C
Highlighted text
This is hidden content that can be revealed.
It can contain markdown too!
Special Characters
- Ampersand: &
- Less than: <
- Greater than: >
- Copyright: ©
- Em dash: —
- En dash: –
- Ellipsis: …
- Smart quotes: “quoted” and ‘single’
Emoji (if supported)
:smile: :heart: :thumbsup: :rocket:
Escaping Special Characters
*Not italic* [Not a link] `Not code`
Long Line Test
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
Nested Combinations
-
Bold item with italic text and
code -
Blockquote in list Second line
-
Code block in list Line 2 -
- Nested unordered list
- With multiple items
- And some formatting
Conclusion
This document tests all markdown features to ensure consistent styling across the site.