Welcome to the Online Markdown Editor
This editor allows you to write and preview Markdown in real-time. Here is a quick guide to Markdown syntax:
Headers
H1 Header
H2 Header
H3 Header
H4 Header
H5 Header
H6 Header
Text Formatting
Bold Text using ** or __
Italic Text using * or _
Bold and Italic using *** or ___
Strikethrough using ~~
Lists
Unordered List
- Item 1
- Item 2
- Subitem 2.1
- Subitem 2.2
- Item 3
Ordered List
- First Item
- Second Item
- Third Item
Links and Images
Blockquotes
This is a blockquote.
It can span multiple lines.
Code
Inline code: console.log('Hello World');
Code block:
function greet(name) {
console.log(`Hello, ${name}!`);
}
greet('User');
Tables
| Syntax | Description |
|---|---|
| Header | Title |
| Paragraph | Text |
Horizontal Rule
Enjoy writing!
