parse-entities

WebJar for parse-entities

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

parse-entities
Last Version

Last Version

2.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

parse-entities
WebJar for parse-entities
Project URL

Project URL

https://www.webjars.org
Source Code Management

Source Code Management

https://github.com/wooorm/parse-entities

Download parse-entities

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/parse-entities/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>parse-entities</artifactId>
    <version>2.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/parse-entities/
implementation 'org.webjars.npm:parse-entities:2.0.0'
// https://jarcasting.com/artifacts/org.webjars.npm/parse-entities/
implementation ("org.webjars.npm:parse-entities:2.0.0")
'org.webjars.npm:parse-entities:jar:2.0.0'
<dependency org="org.webjars.npm" name="parse-entities" rev="2.0.0">
  <artifact name="parse-entities" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='parse-entities', version='2.0.0')
)
libraryDependencies += "org.webjars.npm" % "parse-entities" % "2.0.0"
[org.webjars.npm/parse-entities "2.0.0"]

Dependencies

compile (6)

Group / Artifact Type Version
org.webjars.npm : is-alphanumerical jar [1.0.0,2)
org.webjars.npm : is-hexadecimal jar [1.0.0,2)
org.webjars.npm : character-entities jar [1.0.0,2)
org.webjars.npm : is-decimal jar [1.0.0,2)
org.webjars.npm : character-reference-invalid jar [1.0.0,2)
org.webjars.npm : character-entities-legacy jar [1.0.0,2)

Project Modules

There are no modules declared in this project.

parse-entities

Build Coverage Downloads Size

Parse HTML character references: fast, spec-compliant, positional information.

Install

npm:

npm install parse-entities

Use

var decode = require('parse-entities')

decode('alpha &amp bravo')
// => alpha & bravo

decode('charlie &copycat; delta')
// => charlie ©cat; delta

decode('echo &copy; foxtrot &#8800; golf &#x1D306; hotel')
// => echo © foxtrot ≠ golf 𝌆 hotel

API

parseEntities(value[, options])

options
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).

options.nonTerminated

Whether to allow non-terminated entities (boolean, default: true). For example, &copycat for ©cat. This behavior is spec-compliant but can lead to unexpected results.

options.warning

Error handler (Function?).

options.text

Text handler (Function?).

options.reference

Reference handler (Function?).

options.warningContext

Context used when invoking warning ('*', optional).

options.textContext

Context used when invoking text ('*', optional).

options.referenceContext

Context used when invoking reference ('*', optional)

options.position

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

{
  start: {line: 1, column: 1, offset: 0},
  indent: []
}
Returns

string — Decoded value.

function warning(reason, position, code)

Error handler.

Context

this refers to warningContext when given to parseEntities.

Parameters
reason

Human-readable reason the error (string).

position

Place at which the parse error occurred (Position).

code

Machine-readable code for the error (number).

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 Ampersand did not start a reference
4 Foo &# Empty reference
5 Foo &bar; baz Unknown entity
6 Foo &#128; baz Disallowed reference
7 Foo &#xD800; baz Prohibited: outside permissible unicode range

function text(value, location)

Text handler.

Context

this refers to textContext when given to parseEntities.

Parameters
value

String of content (string).

location

Location at which value starts and ends (Location).

function reference(value, location, source)

Character reference handler.

Context

this refers to referenceContext when given to parseEntities.

Parameters
value

Encoded character reference (string).

location

Location at which value starts and ends (Location).

source

Source of character reference (Location).

Related

License

MIT © Titus Wormer

Versions

Version
2.0.0
1.2.2
1.2.1
1.2.0
1.1.2
1.1.1