An open API service indexing awesome lists of open source software.

https://github.com/danielgolden/retext-use-contractions

A retext plugin to encourage the usage of common contractions.
https://github.com/danielgolden/retext-use-contractions

javascript natural-language retext retext-plugin unified unifiedjs

Last synced: 5 months ago
JSON representation

A retext plugin to encourage the usage of common contractions.

Awesome Lists containing this project

README

          

# retext-use-contractions

A [retext](https://github.com/retextjs/retext) plugin to encourage the usage of common contractions.

## Install

```sh
npm install retext-use-contractions
```

## Use

```js
import { retext } from "retext";
import retextUseContractions from "retext-use-contractions";

retext()
.use(retextUseContractions)
.process("I can not see you.")
.then((report) => {
console.error(report);
});
```