Markdown预览区域
正在转换文档,请稍候...
Converting document, please wait...
CodeInWord 是一个免费的在线 Markdown 转 DOCX 工具,允许用户将 Markdown 文本快速转换为 Microsoft Word 文档格式(.docx)。
所有转换过程完全在您的浏览器中执行,不会将您的数据传输到任何服务器,确保您的数据安全和隐私。
# Markdown 示例文档
## 这是二级标题
### 这是三级标题
这是普通段落文本。
**这是粗体文本** 和 *这是斜体文本*。
~~这是删除线文本~~。
> 这是一个引用块。
- 这是无序列表项
- 另一个无序列表项
- 嵌套的列表项
1. 这是有序列表项
2. 另一个有序列表项
[这是一个链接](https://www.example.com)

`这是行内代码`
```javascript
// 这是代码块
function hello() {
console.log("Hello, World!");
}
```
| 表头1 | 表头2 |
|-------|-------|
| 单元格1 | 单元格2 |
| 单元格3 | 单元格4 |
***
这是分隔线上方的文本,下方是任务列表:
- [x] 已完成任务
- [ ] 未完成任务
CodeInWord is a free online Markdown to DOCX converter that allows users to quickly convert Markdown text to Microsoft Word document format (.docx).
All conversion processes run completely in your browser, ensuring your data is never transmitted to any server, guaranteeing your data security and privacy.
# Markdown Example Document
## This is a Level 2 Heading
### This is a Level 3 Heading
This is a regular paragraph text.
**This is bold text** and *this is italic text*.
~~This is strikethrough text~~.
> This is a blockquote.
- This is an unordered list item
- Another unordered list item
- Nested list item
1. This is an ordered list item
2. Another ordered list item
[This is a link](https://www.example.com)

`This is inline code`
```javascript
// This is a code block
function hello() {
console.log("Hello, World!");
}
```
| Header 1 | Header 2 |
|----------|----------|
| Cell 1 | Cell 2 |
| Cell 3 | Cell 4 |
***
This is text above a horizontal rule, and below is a task list:
- [x] Completed task
- [ ] Unfinished task