This is a live preview markdown editor. Try writing some markdown!
Italic text or Italic text
Bold text or Bold text
Strikethrough text
Inline code
with backticks
// Code block with syntax highlighting
function hello() {
console.log("Hello, World!");
}
This is a blockquote With multiple lines
Nested blockquote
Header 1 | Header 2 |
---|---|
Cell 1 | Cell 2 |
Cell 3 | Cell 4 |
Here's a sentence with a footnote1.
Term : Definition
:smile: :heart: :rocket:
$E = mc^2$
This is the footnote content. ↩
A powerful markdown editor with live preview, syntax highlighting, and GitHub Flavored Markdown support. Write and preview your markdown content in real-time.
Feature | Syntax | Example | Result |
---|---|---|---|
Headers | # H1 to ###### H6 | # Heading 1 | # Heading 1 |
Bold | **text** or __text__ | **Bold text** | Bold text |
Italic | *text* or _text_ | *Italic text* | Italic text |
Strikethrough | ~~text~~ | ~~Strikethrough~~ | |
Code | code | code | code |
Link | [text](url) | [Link](https://jsonreader.com) | Link |
Image |  |  | |
List | - item or 1. item | - List item | - List item |
Blockquote | > text | > Blockquote | > Blockquote |
Table | ` | Header | Header |
Task List | - [ ] task | - [ ] Task | - [ ] Task |
Horizontal Rule | --- or *** | --- | --- |
```javascript
function example() {
console.log("Hello!");
}
### Tables
```markdown
| Feature | Syntax | Example |
|---------|---------|---------|
| Bold | **text** | **Bold text** |
| Italic | *text* | *Italic text* |
1. First item
2. Second item
3. Third item
* Unordered item
* Another item
* Nested item
> Single line
> Multi-line
>> Nested quote
Character | Description | Example |
---|---|---|
\ | Escape character | \*Not italic\* |
``` | Code backtick | \ Not code`` |
\# | Header hash | \#Not header\# |
Type | Syntax | Example |
---|---|---|
Inline | $E = mc^2$ | $E = mc^2$ |
Block | $$ | $$rac{n!}{k!(n-k)!} = inom{n}{k}$$ |
Emoji | Code | Result |
---|---|---|
Smile | :smile: | :smile: |
Heart | :heart: | :heart: |
Rocket | :rocket: | :rocket: |
<div style="color: blue">Blue text</div>
<span style="color: red">Red text</span>
<kbd>Ctrl</kbd> + <kbd>C</kbd>
<!-- This is a comment -->