A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/retextjs/retext-spell below:

retextjs/retext-spell: plugin to check spelling

retext plugin to check spelling.

This package is a unified (retext) plugin to check spelling with nspell and a dictionary.

You can opt-into this plugin when you’re dealing with content that might contain spelling mistakes, and have authors that can fix that content.

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

In Deno with esm.sh:

import retextSpell from 'https://esm.sh/retext-spell@6'

In browsers with esm.sh:

<script type="module">
  import retextSpell from 'https://esm.sh/retext-spell@6?bundle'
</script>
import dictionaryEn from 'dictionary-en'
import {retext} from 'retext'
import retextSpell from 'retext-spell'
import {reporter} from 'vfile-reporter'

const file = await retext()
  .use(retextSpell, {dictionary: dictionaryEn})
  .process('Some useles documeant.')

console.error(reporter(file))

Yields:

1:6-1:12  warning Unexpected unknown word `useles`, expected for example `useless`     useles    retext-spell
1:13-1:22 warning Unexpected unknown word `documeant`, expected for example `document` documeant retext-spell

⚠ 2 warnings

This package exports no identifiers. The default export is retextSpell.

unified().use(retextSpell, options)

Check spelling.

Transform (Transformer).

Dictionary function (TypeScript type).

type Dictionary = (onload: OnLoad) => undefined | void

type OnLoad = (error: Error | undefined, result?: unknown) => undefined | void

Configuration (TypeScript type).

Each message is emitted as a VFileMessage on file, with source set to 'retext-spell', ruleId to the normalized unknown word, actual to the unknown word, and expected to an array with suggestions.

This package is fully typed with TypeScript. It exports the additional types Dictionary and Options.

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, retext-spell@^6, compatible with Node.js 16.

See contributing.md in retextjs/.github for ways to get started. See support.md for ways to get help.

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

MIT © Titus Wormer


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4