Real-time preview and conversion of Markdown to HTML using marked.js
Headers:
# H1 Header
## H2 Header
### H3 HeaderText Formatting:
**Bold text**
*Italic text*
~~Strikethrough~~
`Inline code`Lists:
- Unordered item
- Another item
1. Ordered item
2. Second itemLinks & Images:
[Link text](https://example.com)
Code Blocks:
```javascript
function hello() {
console.log(`"`Hello!`"`);
}
```Blockquotes & Tables:
`>` This is a blockquote
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |