CodeInWord

Markdown预览区域

Markdown 在线渲染工具

Markdown 预览工具是一个网页应用,允许用户实时查看Markdown文本的渲染效果,帮助用户更好地编写和格式化文档。

此Markdown预览工具支持标准的Markdown语法,包括标题、列表、链接、图片、代码块等,同时还支持导出为HTML格式。

什么是Markdown?

Markdown是一种轻量级标记语言,创建于2004年,目标是让文档更易读易写。它使用简单的符号和约定来标记文本的格式,如标题、列表和链接等,而无需使用复杂的编辑工具。

Markdown文件以纯文本格式保存,使用.md或.markdown扩展名。它的最大优势在于可以轻松转换为HTML、PDF和其他格式,同时保持良好的可读性。

Markdown广泛用于博客写作、文档编写、README文件、论坛帖子和技术文档等。许多网站和应用如GitHub、Stack Overflow、Reddit等都支持Markdown格式。

了解更多关于Markdown的信息,请访问Markdown官方网站Markdown指南

Markdown预览工具能做什么?

Markdown示例

# Markdown 示例文档

## 这是二级标题

### 这是三级标题

这是普通段落文本。

**这是粗体文本** 和 *这是斜体文本*。

~~这是删除线文本~~。

> 这是一个引用块。

- 这是无序列表项
- 另一个无序列表项
  - 嵌套的列表项

1. 这是有序列表项
2. 另一个有序列表项

[这是一个链接](https://www.example.com)

![这是一个图片](https://via.placeholder.com/150)

`这是行内代码`

```javascript
// 这是代码块
function hello() {
  console.log("Hello, World!");
}
```

| 表头1 | 表头2 |
|-------|-------|
| 单元格1 | 单元格2 |
| 单元格3 | 单元格4 |

***

这是分隔线上方的文本,下方是任务列表:

- [x] 已完成任务
- [ ] 未完成任务

Markdown Online Renderer

Markdown Previewer is a web application that allows users to view the rendering effect of Markdown text in real-time, helping users better write and format documents.

This Markdown preview tool supports standard Markdown syntax, including headings, lists, links, images, code blocks, etc., and also supports exporting to HTML format.

What is Markdown?

Markdown is a lightweight markup language created in 2004 with the goal of making documents easier to read and write. It uses simple symbols and conventions to mark text formats such as headings, lists, and links without the need for complex editing tools.

Markdown files are saved in plain text format with .md or .markdown extensions. Its biggest advantage is that it can be easily converted to HTML, PDF, and other formats while maintaining good readability.

Markdown is widely used for blog writing, document writing, README files, forum posts, and technical documentation. Many websites and applications such as GitHub, Stack Overflow, Reddit, etc. support Markdown format.

To learn more about Markdown, please visit the Markdown Official Website or Markdown Guide.

What can Markdown Previewer do?

Markdown Example

# 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 an image](https://via.placeholder.com/150)

`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