remark vs markdown-it vs showdown
Markdown 解析库
remarkmarkdown-itshowdown类似的npm包:

Markdown 解析库

Markdown 解析库用于将 Markdown 格式的文本转换为 HTML。这些库各自具有不同的特性和适用场景,能够满足不同开发者的需求。选择合适的 Markdown 解析库可以提高开发效率,确保生成的 HTML 代码符合预期,并提供良好的扩展性和可维护性。

npm下载趋势

3 年

GitHub Stars 排名

统计详情

npm包名称
下载量
Stars
大小
Issues
发布时间
License
remark3,527,9838,80615.7 kB83 年前MIT
markdown-it021,236768 kB592 个月前MIT
showdown014,845801 kB236-MIT

功能对比: remark vs markdown-it vs showdown

性能

  • remark:

    remark 的性能相对较慢,因为它使用 AST 进行处理,适合需要复杂文档处理的场景。虽然速度较慢,但它的灵活性和可扩展性使其在特定场景下非常有用。

  • markdown-it:

    markdown-it 是一个高性能的 Markdown 解析器,能够快速将 Markdown 转换为 HTML。它的设计目标是提供快速的渲染速度,适合需要处理大量 Markdown 内容的应用。

  • showdown:

    showdown 的性能适中,适合小型项目和简单的 Markdown 转换需求。它的设计目标是简单易用,适合快速集成,但在处理大量内容时可能不如 markdown-it 高效。

扩展性

  • remark:

    remark 的扩展性非常强大,支持通过插件对 Markdown 进行复杂的转换和处理。开发者可以根据需要自定义 AST 处理流程,适合需要高度定制化的项目。

  • markdown-it:

    markdown-it 提供了丰富的插件机制,开发者可以轻松添加自定义功能和扩展。它的插件生态系统活跃,能够满足各种需求。

  • showdown:

    showdown 的扩展性相对较弱,主要提供基本的 Markdown 转换功能。虽然可以通过修改源代码实现一些扩展,但不如 markdown-it 和 remark 灵活。

学习曲线

  • remark:

    remark 的学习曲线相对较陡,特别是对 AST 的理解需要一定的学习成本。虽然功能强大,但新手可能需要花费更多时间来掌握。

  • markdown-it:

    markdown-it 的学习曲线较平缓,API 简单易懂,适合新手快速上手。开发者可以很快理解如何使用它进行 Markdown 转换。

  • showdown:

    showdown 的学习曲线非常平坦,API 设计简单,适合快速集成和使用。新手可以轻松上手,快速实现 Markdown 转换。

文档支持

  • remark:

    remark 的文档也很全面,涵盖了插件开发和 AST 操作的详细信息。对于需要深入理解的开发者,文档提供了很好的支持。

  • markdown-it:

    markdown-it 提供了详细的文档和示例,帮助开发者理解如何使用和扩展库的功能。文档内容丰富,适合不同水平的开发者。

  • showdown:

    showdown 的文档相对简单,主要集中在基本用法上。虽然适合快速上手,但对于高级功能的支持可能不够详细。

社区支持

  • remark:

    remark 也有一个活跃的社区,特别是在文档处理和转换方面有很多讨论和资源。适合需要深入定制的开发者。

  • markdown-it:

    markdown-it 拥有活跃的社区和丰富的插件生态,开发者可以轻松找到解决方案和扩展功能。社区支持良好,适合长期使用。

  • showdown:

    showdown 的社区相对较小,但仍然有一些用户在使用。对于简单的需求,社区支持足够,但对于复杂需求可能需要更多的自助探索。

如何选择: remark vs markdown-it vs showdown

  • remark:

    选择 remark 如果你需要一个现代化的、基于插件的 Markdown 处理工具,尤其是在需要进行复杂的文档处理和转换时。remark 提供了强大的语法树操作能力,适合需要进行 AST(抽象语法树)处理的项目。

  • markdown-it:

    选择 markdown-it 如果你需要一个快速、灵活且支持插件的 Markdown 解析器。它具有良好的性能,适合需要高效渲染的场景,并且可以通过插件扩展功能。

  • showdown:

    选择 showdown 如果你需要一个简单易用的 Markdown 转换器,特别是在浏览器环境中。它的 API 简单,适合快速集成和使用,适合小型项目或简单的 Markdown 转换需求。

remark的README

remark

Build Coverage Downloads Size Sponsors Backers Chat

unified processor with support for parsing from markdown and serializing to markdown.

Contents

What is this?

This package is a unified processor with support for parsing markdown as input and serializing markdown as output by using unified with remark-parse and remark-stringify.

See the monorepo readme for info on what the remark ecosystem is.

When should I use this?

You can use this package when you want to use unified, have markdown as input, and want markdown as output. This package is a shortcut for unified().use(remarkParse).use(remarkStringify). When the input isn’t markdown (meaning you don’t need remark-parse) or the output is not markdown (you don’t need remark-stringify), it’s recommended to use unified directly.

When you want to inspect and format markdown files in a project on the command line, you can use remark-cli.

Install

This package is ESM only. In Node.js (version 16+), install with npm:

npm install remark

In Deno with esm.sh:

import {remark} from 'https://esm.sh/remark@15'

In browsers with esm.sh:

<script type="module">
  import {remark} from 'https://esm.sh/remark@15?bundle'
</script>

Use

Say we have the following module example.js:

import {remark} from 'remark'
import remarkToc from 'remark-toc'

const doc = `
# Pluto

Pluto is a dwarf planet in the Kuiper belt.

## Contents

## History

### Discovery

In the 1840s, Urbain Le Verrier used Newtonian mechanics to predict the position of…

### Name and symbol

The name Pluto is for the Roman god of the underworld, from a Greek epithet for Hades…

### Planet X disproved

Once Pluto was found, its faintness and lack of a viewable disc cast doubt…

## Orbit

Pluto's orbital period is about 248 years…
`

const file = await remark()
  .use(remarkToc, {heading: 'contents', tight: true})
  .process(doc)

console.error(String(file))

…running that with node example.js yields:

# Pluto

Pluto is a dwarf planet in the Kuiper belt.

## Contents

* [History](https://www.npmjs.com/package/remark#history)
  * [Discovery](https://www.npmjs.com/package/remark#discovery)
  * [Name and symbol](https://www.npmjs.com/package/remark#name-and-symbol)
  * [Planet X disproved](https://www.npmjs.com/package/remark#planet-x-disproved)
* [Orbit](https://www.npmjs.com/package/remark#orbit)

## History

### Discovery

In the 1840s, Urbain Le Verrier used Newtonian mechanics to predict the position of…

### Name and symbol

The name Pluto is for the Roman god of the underworld, from a Greek epithet for Hades…

### Planet X disproved

Once Pluto was found, its faintness and lack of a viewable disc cast doubt…

## Orbit

Pluto's orbital period is about 248 years…

API

This package exports the identifier remark. There is no default export.

remark()

Create a new unified processor that already uses remark-parse and remark-stringify.

You can add more plugins with use. See unified for more information.

Examples

Example: checking markdown

The following example checks that markdown code style is consistent and follows some best practices:

import {remark} from 'remark'
import remarkPresetLintConsistent from 'remark-preset-lint-consistent'
import remarkPresetLintRecommended from 'remark-preset-lint-recommended'
import {reporter} from 'vfile-reporter'

const file = await remark()
  .use(remarkPresetLintConsistent)
  .use(remarkPresetLintRecommended)
  .process('1) Hello, _Jupiter_ and *Neptune*!')

console.error(reporter(file))

Yields:

          warning Missing newline character at end of file final-newline             remark-lint
1:1-1:35  warning Marker style should be `.`               ordered-list-marker-style remark-lint
1:4       warning Incorrect list-item indent: add 1 space  list-item-indent          remark-lint
1:25-1:34 warning Emphasis should use `_` as a marker      emphasis-marker           remark-lint

⚠ 4 warnings

Example: passing options to remark-stringify

When you use remark-stringify manually you can pass options to use. Because remark-stringify is already used in remark, that’s not possible. To define options for remark-stringify, you can instead pass options to data:

import {remark} from 'remark'

const doc = `
# Moons of Neptune

1. Naiad
2. Thalassa
3. Despine
4. …
`

const file = await remark()
  .data('settings', {
    bulletOrdered: ')',
    incrementListMarker: false,
    setext: true
  })
  .process(doc)

console.log(String(file))

Yields:

Moons of Neptune
================

1) Naiad
1) Thalassa
1) Despine
1) …

Syntax

Markdown is parsed and serialized according to CommonMark. Other plugins can add support for syntax extensions.

Syntax tree

The syntax tree used in remark is mdast.

Types

This package is fully typed with TypeScript. There are no extra exported types.

It also registers Settings with unified. If you’re passing options with .data('settings', …), make sure to import this package somewhere in your types, as that registers the fields.

/// <reference types="remark" />

import {unified} from 'unified'

// @ts-expect-error: `thisDoesNotExist` is not a valid option.
unified().data('settings', {thisDoesNotExist: false})

Compatibility

Projects maintained by the unified collective are compatible with maintained versions of Node.js.

When we cut a new major release, we drop support for unmaintained versions of Node. This means we try to keep the current release line, remark@^15, compatible with Node.js 16.

Security

As markdown can be turned into HTML and improper use of HTML can open you up to cross-site scripting (XSS) attacks, use of remark can be unsafe. When going to HTML, you will combine remark with rehype, in which case you should use rehype-sanitize.

Use of remark plugins could also open you up to other attacks. Carefully assess each plugin and the risks involved in using them.

For info on how to submit a report, see our security policy.

Contribute

See contributing.md in remarkjs/.github for ways to get started. See support.md for ways to get help. Join us in Discussions to chat with the community and contributors.

This project has a code of conduct. By interacting with this repository, organization, or community you agree to abide by its terms.

Sponsor

Support this effort and give back by sponsoring on OpenCollective!

Vercel

Motif

HashiCorp

GitBook

Gatsby

Netlify

Coinbase

ThemeIsle

Expo

Boost Note

Markdown Space

Holloway


You?

License

MIT © Titus Wormer