std/html/mod.ts
Asher Gomez 4f1826d906
BREAKING(html/unstable): move is-valid-custom-element-name module to unstable-is-valid-custom-element-name (#5948)
* BREAKING(html/unstable): move `is-valid-custom-element-name` module to `unstable-is-valid-custom-element-name`

* fix
2024-09-12 13:02:20 +09:00

19 lines
481 B
TypeScript

// 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("&lt;&gt;&#39;&amp;AA"), "<>'&AA");
* assertEquals(unescape("&thorn;&eth;"), "&thorn;&eth;");
* ```
*
* @module
*/
export * from "./entities.ts";