This is a simple markdown editor with real-time preview. Try editing this text to see it in action.
You can make text bold, italic, bold and italic, strikethrough, or even inline code.

Use console.log() to print to the console.
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))
"The best way to predict the future is to invent it." — Alan Kay
Nested blockquote:
This is nested
And this is even more nested
| Feature | Supported | Notes |
|---|---|---|
| Headers | ✅ | H1 through H6 |
| Lists | ✅ | Ordered, unordered, and tasks |
| Code | ✅ | Inline and blocks |
| Tables | ✅ | With alignment |
| Links | ✅ | Internal and external |
| Left Aligned | Center Aligned | Right Aligned |
|---|---|---|
| Left | Center | Right |
| Text | Text | Text |
Use three or more dashes, asterisks, or underscores:
Emojis: 😀 🎉 🚀 💻 ⚡ 🌟
Math-like text: E = mc²
Superscript: x² (requires special formatting)
Hidden content goes here!
</details>Use backslash to escape special characters: * Not italic * # Not a heading
Start typing to replace this example and create your own markdown document! 📝