Writefreely Markdown + HTML Mixed Rendering Test
More Examples Found Here
Heading 1
Heading 2
Heading 3
Heading 4
This is a paragraph with bold, italic, bold italic, strikethrough, and inline code.
This is a blockquote.
Nested quote: > Second level quote.
Lists
Unordered
- Item 1
- Item 2
- Nested Item
- Deep Nested
Ordered
- First
- Second
- Third
Task List
- [x] Completed
- [ ] Incomplete
Links & Images
Tables
| Name | Age | Role |
|---|---|---|
| Alice | 30 | Engineer |
| Bob | 25 | Designer |
| Charlie | 35 | Manager |
Inline HTML
HTML Block
This is raw HTML inside markdown.
Test ButtonCode Blocks
JavaScript
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Python
def greet(name):
return f"Hello, {name}!"
print(greet("World"))
JSON
{
"name": "test",
"enabled": true,
"items": [1, 2, 3]
}
Escaping Characters
*This should not be italic*
# This should not be a heading
HTML Formatting Tags
Bold HTML
Italic HTML
Underline HTML
Highlighted
Small text
Deleted text
HTML Table
| Framework | Language |
|---|---|
| React | JavaScript |
| Laravel | PHP |
Details / Summary
Click to expand
Hidden content inside details tag.
- Hidden list item
- Another hidden item
Horizontal Rule
Nested HTML + Markdown
### Markdown Inside HTML Container
- Markdown list
- Another item
HTML paragraph inside div.
Emoji Test
😀 🚀 🔥 ✅ ❌ ❤️ 🎉
Unicode Test
こんにちは
안녕하세요
你好
Привет
مرحبا
SVG Test
Form Elements
Name:Password:
Select:
Option A Option B
Textarea content
Checkbox
Radio
Submit
Video / Audio
Iframe
Preformatted Text
Line 1
Indented line
Line 3
Keyboard / Samp / Var
Press Ctrl + C to copy.
Sample output text
x + y = z
Math
Inline math: $E = mc^2$
Block math:
$$ \int_0^\infty e^{-x} dx = 1 $$
HTML Comments
Visible text after comment.
Entity Encoding
& < > © ® ™
Final Section
End of rendering stress test.