This release is 2 versions behind 1.0.5 — the latest version of @std/html. Jump to latest
Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
Built and signed on GitHub Actions
Works with
•JSR Score94%•This package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers




Downloads4,435/wk
•Publisheda year ago (1.0.3)
Functions for HTML, such as escaping or unescaping HTML entities
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. /** * Functions for HTML tasks such as escaping or unescaping HTML entities. * * ```ts * import { unescape } from "@std/html/entities"; * import { assertEquals } from "@std/assert"; * * assertEquals(unescape("<>'&AA"), "<>'&AA"); * assertEquals(unescape("þð"), "þð"); * ``` * * @module */ export * from "./entities.ts";