schedule

Reset Schedule: 00:00 & 12:00 (GMT+7) Daily

markdown

Markdown Converter

Convert between Markdown and HTML with live preview

markdown Markdown Converter

Characters: 0

                

Sample Templates:

lightbulb

About Markdown:

Markdown is a lightweight markup language that allows you to format text using simple, readable syntax. It's commonly used for documentation, README files, and content management systems.

help_outline Markdown Syntax Guide

Basic Syntax

Headers

# H1
## H2
### H3

Text Formatting

**bold**
*italic*
***bold italic***

Links

[link text](https://example.com)

Images

![alt text](image.jpg)

Advanced Syntax

Code Blocks

`inline code`

```
// code block
```

```javascript
// code with syntax
```

Lists

- Unordered item 1
- Unordered item 2

1. Ordered item 1
2. Ordered item 2

Blockquotes

> Blockquote text
> Multiple lines

Tables

| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |

cases Common Use Cases

description Documentation

API docs, user guides, technical documentation with code examples and structured content.

article Blog Posts

Content management systems, static site generators, personal blogs with rich formatting.

code README Files

GitHub repositories, project documentation, installation instructions, and contribution guidelines.