nlcst-affix-emoticon-modifier
Version:
nlcst utility to merge affix emoticons into the previous sentence
232 lines (156 loc) β’ 7.01 kB
Markdown
[![Build][build-badge]][build]
[![Coverage][coverage-badge]][coverage]
[![Downloads][downloads-badge]][downloads]
[![Size][size-badge]][size]
[![Sponsors][sponsors-badge]][collective]
[![Backers][backers-badge]][collective]
[![Chat][chat-badge]][chat]
[][] utility to move initial emoticons into the previous sentence.
* [What is this?](
* [When should I use this?](
* [Install](
* [Use](
* [API](
* [`affixEmoticonModifier(node)`](
* [Types](
* [Compatibility](
* [Related](
* [Contribute](
* [License](
This utility searches emoticon nodes (from
[`nlcst-emoticon-modifier`][nlcst-emoticon-modifier] and
[`nlcst-emoji-modifier`][nlcst-emoji-modifier]) that start a sentence and then
moves them into the previous sentence.
## When should I use this?
This package is a tiny utility that helps when dealing with emoticons in natural
language.
Itβs useful because many people place an emoticon or emoji, representing emotion
related to the previous sentence, after a terminal marker.
π
The plugin [`retext-emoji`][retext-emoji] wraps this utility and others at a
higher-level (easier) abstraction.
## Install
This package is [ESM only][esm].
In Node.js (version 16+), install with [npm][]:
```sh
npm install nlcst-affix-emoticon-modifier
```
In Deno with [`esm.sh`][esmsh]:
```js
import {affixEmoticonModifier} from 'https://esm.sh/nlcst-affix-emoticon-modifier@3'
```
In browsers with [`esm.sh`][esmsh]:
```html
<script type="module">
import {affixEmoticonModifier} from 'https://esm.sh/nlcst-affix-emoticon-modifier@3?bundle'
</script>
```
```js
import {affixEmoticonModifier} from 'nlcst-affix-emoticon-modifier'
import {emoticonModifier} from 'nlcst-emoticon-modifier'
import {ParseEnglish} from 'parse-english'
import {inspect} from 'unist-util-inspect'
const parser = new ParseEnglish()
parser.tokenizeSentencePlugins.unshift(emoticonModifier)
parser.tokenizeParagraphPlugins.unshift(affixEmoticonModifier)
console.log(inspect(parser.parse('Hey. :) How is it going?')))
```
Yields:
```txt
RootNode[1] (1:1-1:25, 0-24)
ββ0 ParagraphNode[3] (1:1-1:25, 0-24)
ββ0 SentenceNode[4] (1:1-1:8, 0-7)
β ββ0 WordNode[1] (1:1-1:4, 0-3)
β β ββ0 TextNode "Hey" (1:1-1:4, 0-3)
β ββ1 PunctuationNode "." (1:4-1:5, 3-4)
β ββ2 WhiteSpaceNode " " (1:5-1:6, 4-5)
β ββ3 EmoticonNode ":)" (1:6-1:8, 5-7)
ββ1 WhiteSpaceNode " " (1:8-1:9, 7-8)
ββ2 SentenceNode[8] (1:9-1:25, 8-24)
ββ0 WordNode[1] (1:9-1:12, 8-11)
β ββ0 TextNode "How" (1:9-1:12, 8-11)
ββ1 WhiteSpaceNode " " (1:12-1:13, 11-12)
ββ2 WordNode[1] (1:13-1:15, 12-14)
β ββ0 TextNode "is" (1:13-1:15, 12-14)
ββ3 WhiteSpaceNode " " (1:15-1:16, 14-15)
ββ4 WordNode[1] (1:16-1:18, 15-17)
β ββ0 TextNode "it" (1:16-1:18, 15-17)
ββ5 WhiteSpaceNode " " (1:18-1:19, 17-18)
ββ6 WordNode[1] (1:19-1:24, 18-23)
β ββ0 TextNode "going" (1:19-1:24, 18-23)
ββ7 PunctuationNode "?" (1:24-1:25, 23-24)
```
This package exports the identifier
[`affixEmoticonModifier`][api-affix-emoticon-modifier].
There is no default export.
Merge emoticons in `node` into `EmoticonNode`s.
See [`Emoticon` in `nlcst-emoticon-modifier`][emoticon-mofifier-emoticon] for
that type.
* `node` ([`Paragraph`][paragraph])
β nlcst paragraph to transform
Nothing (`undefined`).
This package is fully typed with [TypeScript][].
It exports no additional types.
See [`Emoticon` in `nlcst-emoticon-modifier`][emoticon-mofifier-emoticon] for
how to register that type.
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,
`nlcst-affix-emoticon-modifier@^3`, compatible with Node.js 16.
* [`nlcst-emoticon-modifier`](https://github.com/syntax-tree/nlcst-emoticon-modifier)
β support emoticons
* [`nlcst-emoji-modifier`](https://github.com/syntax-tree/nlcst-emoji-modifier)
β support emoji and gemoji
See [`contributing.md`][contributing] in [`syntax-tree/.github`][health] for
ways to get started.
See [`support.md`][support] for ways to get help.
This project has a [Code of Conduct][coc].
By interacting with this repository, organisation, or community you agree to
abide by its terms.
[][license] Β© [Titus Wormer][author]
<!-- Definitions -->
[]: https://github.com/syntax-tree/nlcst-affix-emoticon-modifier/workflows/main/badge.svg
[]: https://github.com/syntax-tree/nlcst-affix-emoticon-modifier/actions
[]: https://img.shields.io/codecov/c/github/syntax-tree/nlcst-affix-emoticon-modifier.svg
[]: https://codecov.io/github/syntax-tree/nlcst-affix-emoticon-modifier
[]: https://img.shields.io/npm/dm/nlcst-affix-emoticon-modifier.svg
[]: https://www.npmjs.com/package/nlcst-affix-emoticon-modifier
[]: https://img.shields.io/badge/dynamic/json?label=minzipped%20size&query=$.size.compressedSize&url=https://deno.bundlejs.com/?q=nlcst-affix-emoticon-modifier
[]: https://bundlejs.com/?q=nlcst-affix-emoticon-modifier
[]: https://opencollective.com/unified/sponsors/badge.svg
[]: https://opencollective.com/unified/backers/badge.svg
[]: https://opencollective.com/unified
[]: https://img.shields.io/badge/chat-discussions-success.svg
[]: https://github.com/syntax-tree/unist/discussions
[]: https://docs.npmjs.com/cli/install
[]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c
[]: https://esm.sh
[]: https://www.typescriptlang.org
[]: license
[]: https://wooorm.com
[]: https://github.com/syntax-tree/.github
[]: https://github.com/syntax-tree/.github/blob/main/contributing.md
[]: https://github.com/syntax-tree/.github/blob/main/support.md
[]: https://github.com/syntax-tree/.github/blob/main/code-of-conduct.md
[]: https://github.com/retextjs/retext-emoji
[]: https://github.com/syntax-tree/nlcst
[]: https://github.com/syntax-tree/nlcst#paragraph
[]: https://github.com/syntax-tree/nlcst-emoticon-modifier
[]: https://github.com/syntax-tree/nlcst-emoji-modifier
[]: https://github.com/syntax-tree/nlcst-emoticon-modifier#emoticon
[]: