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

https://github.com/danielgolden/retext-no-emojis

A retext plugin to discourage the usage of emoji(s)
https://github.com/danielgolden/retext-no-emojis

natural-language-processing retext retext-plugin unifiedjs

Last synced: 5 months ago
JSON representation

A retext plugin to discourage the usage of emoji(s)

Awesome Lists containing this project

README

          

# retext-no-emojis

A [retext](https://github.com/retextjs/retext) plugin to discourage the usage of emoji(s).

## Install

```sh
npm install retext-no-emojis
```

## Use

```js
import { retext } from "retext";
import retextNoEmojis from "./index.js";

retext()
.use(retextNoEmojis)
.process("This is some text ✨ with emojis 😂 sprinkled in 😏.")
.then((text) => {
console.error(text.messages);
});
```