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.
- Host: GitHub
- URL: https://github.com/danielgolden/retext-use-contractions
- Owner: danielgolden
- Created: 2022-01-23T15:22:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-27T16:55:45.000Z (almost 4 years ago)
- Last Synced: 2025-10-12T22:08:35.334Z (9 months ago)
- Topics: javascript, natural-language, retext, retext-plugin, unified, unifiedjs
- Language: JavaScript
- Homepage:
- Size: 24.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
});
```