Skip to main content
Home
Works with
This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
This package works with Cloudflare Workers
This package works with Node.js
This package works with Deno
This package works with Bun
This package works with Browsers
JSR Score94%
Downloads2/wk
Published4 months ago (1.0.5)

Functions for HTML, such as escaping or unescaping HTML entities

function unescape
unescape(
str: string,
options?: Partial<UnescapeOptions>
): string

Unescapes HTML entities in text.

Default options only handle &<>'" and numeric entities.

Examples

Basic usage

import { unescape } from "@std/html/entities";
import { assertEquals } from "@std/assert";

assertEquals(unescape("&lt;&gt;&#39;&amp;AA"), "<>'&AA");
assertEquals(unescape("&thorn;&eth;"), "&thorn;&eth;");

Using a custom entity list

This uses the full named entity list from the HTML spec (~47K un-minified)

import { unescape } from "@std/html/entities";
import entityList from "@std/html/named-entity-list.json" with { type: "json" };
import { assertEquals } from "@std/assert";

assertEquals(unescape("&lt;&gt;&#39;&amp;AA", { entityList }), "<>'&AA");

Parameters

The string to unescape.

optional
options: Partial<UnescapeOptions>

Options for unescaping.

Return Type

The unescaped string.

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@std/html

Import symbol

import { unescape } from "@std/html";
or

Import directly with a jsr specifier

import { unescape } from "jsr:@std/html";