# parse-entities

> Parse HTML character references

Latest version **4.0.2** (published 2024-12-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install parse-entities
pnpm add parse-entities
yarn add parse-entities
bun add parse-entities
```

## Health

**Score 50/100 (C)** — status: stable.

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

Negative: stale.

## Facts

| | |
|---|---|
| Version | 4.0.2 |
| Published | 2024-12-13 |
| First published | 2015-12-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 7 |
| Unpacked size | 25.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 52 |
| Author | Titus Wormer |
| Maintainers | wooorm |
| Keywords | parse, html, character, reference, entity, entities |

## Links

- npm: https://www.npmjs.com/package/parse-entities
- Repository: https://github.com/wooorm/parse-entities
- Homepage: https://github.com/wooorm/parse-entities#readme
- Issues: https://github.com/wooorm/parse-entities/issues
- Funding: https://github.com/sponsors/wooorm
- npm.io page: https://npm.io/package/parse-entities

## Dependencies (7)

- [is-decimal](https://npm.io/package/is-decimal.md) ^2.0.0
- [@types/unist](https://npm.io/package/@types/unist.md) ^2.0.0
- [is-hexadecimal](https://npm.io/package/is-hexadecimal.md) ^2.0.0
- [is-alphanumerical](https://npm.io/package/is-alphanumerical.md) ^2.0.0
- [character-entities-legacy](https://npm.io/package/character-entities-legacy.md) ^3.0.0
- [character-reference-invalid](https://npm.io/package/character-reference-invalid.md) ^2.0.0
- [decode-named-character-reference](https://npm.io/package/decode-named-character-reference.md) ^1.0.0

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 4.0.2 (latest) — 2024-12-13
- 4.0.1 — 2023-02-09
- 4.0.0 — 2021-11-22
- 3.1.0 — 2021-10-29
- 3.0.0 — 2021-03-26
- 2.0.0 — 2020-01-14
- 1.2.2 — 2019-05-15
- 1.2.1 — 2019-02-23
- 1.2.0 — 2018-09-28
- 1.1.2 — 2018-04-29
- 1.1.1 — 2017-06-16
- 1.1.0 — 2016-07-31
- 1.0.2 — 2015-12-29
- 1.0.1 — 2015-12-27
- 1.0.0 — 2015-12-23

## README

# parse-entities

[![Build][build-badge]][build]
[![Coverage][coverage-badge]][coverage]
[![Downloads][downloads-badge]][downloads]
[![Size][size-badge]][size]

Parse HTML character references.

## Contents

* [What is this?](#what-is-this)
* [When should I use this?](#when-should-i-use-this)
* [Install](#install)
* [Use](#use)
* [API](#api)
  * [`parseEntities(value[, options])`](#parseentitiesvalue-options)
* [Types](#types)
* [Compatibility](#compatibility)
* [Security](#security)
* [Related](#related)
* [Contribute](#contribute)
* [License](#license)

## What is this?

This is a small and powerful decoder of HTML character references (often called
entities).

## When should I use this?

You can use this for spec-compliant decoding of character references.
It’s small and fast enough to do that well.
You can also use this when making a linter, because there are different warnings
emitted with reasons for why and positional info on where they happened.

## Install

This package is [ESM only][esm].
In Node.js (version 14.14+, 16.0+), install with [npm][]:

```sh
npm install parse-entities
```

In Deno with [`esm.sh`][esmsh]:

```js
import {parseEntities} from 'https://esm.sh/parse-entities@3'
```

In browsers with [`esm.sh`][esmsh]:

```html
<script type="module">
  import {parseEntities} from 'https://esm.sh/parse-entities@3?bundle'
</script>
```

## Use

```js
import {parseEntities} from 'parse-entities'

console.log(parseEntities('alpha &amp bravo')))
// => alpha & bravo

console.log(parseEntities('charlie &copycat; delta'))
// => charlie ©cat; delta

console.log(parseEntities('echo &copy; foxtrot &#8800; golf &#x1D306; hotel'))
// => echo © foxtrot ≠ golf 𝌆 hotel
```

## API

This package exports the identifier `parseEntities`.
There is no default export.

### `parseEntities(value[, options])`

Parse HTML character references.

##### `options`

Configuration (optional).

###### `options.additional`

Additional character to accept (`string?`, default: `''`).
This allows other characters, without error, when following an ampersand.

###### `options.attribute`

Whether to parse `value` as an attribute value (`boolean?`, default: `false`).
This results in slightly different behavior.

###### `options.nonTerminated`

Whether to allow nonterminated references (`boolean`, default: `true`).
For example, `&copycat` for `©cat`.
This behavior is compliant to the spec but can lead to unexpected results.

###### `options.position`

Starting `position` of `value` (`Position` or `Point`, optional).
Useful when dealing with values nested in some sort of syntax tree.
The default is:

```js
{line: 1, column: 1, offset: 0}
```

###### `options.warning`

Error handler ([`Function?`][warning]).

###### `options.text`

Text handler ([`Function?`][text]).

###### `options.reference`

Reference handler ([`Function?`][reference]).

###### `options.warningContext`

Context used when calling `warning` (`'*'`, optional).

###### `options.textContext`

Context used when calling `text` (`'*'`, optional).

###### `options.referenceContext`

Context used when calling `reference` (`'*'`, optional)

##### Returns

`string` — decoded `value`.

#### `function warning(reason, point, code)`

Error handler.

###### Parameters

* `this` (`*`) — refers to `warningContext` when given to `parseEntities`
* `reason` (`string`) — human readable reason for emitting a parse error
* `point` ([`Point`][point]) — place where the error occurred
* `code` (`number`) — machine readable code the error

The following codes are used:

| Code | Example            | Note                                          |
| ---- | ------------------ | --------------------------------------------- |
| `1`  | `foo &amp bar`     | Missing semicolon (named)                     |
| `2`  | `foo &#123 bar`    | Missing semicolon (numeric)                   |
| `3`  | `Foo &bar baz`     | Empty (named)                                 |
| `4`  | `Foo &#`           | Empty (numeric)                               |
| `5`  | `Foo &bar; baz`    | Unknown (named)                               |
| `6`  | `Foo &#128; baz`   | [Disallowed reference][invalid]               |
| `7`  | `Foo &#xD800; baz` | Prohibited: outside permissible unicode range |

#### `function text(value, position)`

Text handler.

###### Parameters

* `this` (`*`) — refers to `textContext` when given to `parseEntities`
* `value` (`string`) — string of content
* `position` ([`Position`][position]) — place where `value` starts and ends

#### `function reference(value, position, source)`

Character reference handler.

###### Parameters

* `this` (`*`) — refers to `referenceContext` when given to `parseEntities`
* `value` (`string`) — decoded character reference
* `position` ([`Position`][position]) — place where `source` starts and ends
* `source` (`string`) — raw source of character reference

## Types

This package is fully typed with [TypeScript][].
It exports the additional types `Options`, `WarningHandler`,
`ReferenceHandler`, and `TextHandler`.

## Compatibility

This package is at least compatible with all maintained versions of Node.js.
As of now, that is Node.js 14.14+ and 16.0+.
It also works in Deno and modern browsers.

## Security

This package is safe: it matches the HTML spec to parse character references.

## Related

* [`wooorm/stringify-entities`](https://github.com/wooorm/stringify-entities)
  — encode HTML character references
* [`wooorm/character-entities`](https://github.com/wooorm/character-entities)
  — info on character references
* [`wooorm/character-entities-html4`](https://github.com/wooorm/character-entities-html4)
  — info on HTML4 character references
* [`wooorm/character-entities-legacy`](https://github.com/wooorm/character-entities-legacy)
  — info on legacy character references
* [`wooorm/character-reference-invalid`](https://github.com/wooorm/character-reference-invalid)
  — info on invalid numeric character references

## Contribute

Yes please!
See [How to Contribute to Open Source][contribute].

## License

[MIT][license] © [Titus Wormer][author]

<!-- Definitions -->

[build-badge]: https://github.com/wooorm/parse-entities/workflows/main/badge.svg

[build]: https://github.com/wooorm/parse-entities/actions

[coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/parse-entities.svg

[coverage]: https://codecov.io/github/wooorm/parse-entities

[downloads-badge]: https://img.shields.io/npm/dm/parse-entities.svg

[downloads]: https://www.npmjs.com/package/parse-entities

[size-badge]: https://img.shields.io/bundlephobia/minzip/parse-entities.svg

[size]: https://bundlephobia.com/result?p=parse-entities

[npm]: https://docs.npmjs.com/cli/install

[esmsh]: https://esm.sh

[license]: license

[author]: https://wooorm.com

[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c

[typescript]: https://www.typescriptlang.org

[warning]: #function-warningreason-point-code

[text]: #function-textvalue-position

[reference]: #function-referencevalue-position-source

[invalid]: https://github.com/wooorm/character-reference-invalid

[point]: https://github.com/syntax-tree/unist#point

[position]: https://github.com/syntax-tree/unist#position

[contribute]: https://opensource.guide/how-to-contribute/

---
_Source: https://npm.io/package/parse-entities · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
