2024-01-01 21:11:32 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-05-30 23:49:16 +00:00
|
|
|
// This module is browser compatible.
|
|
|
|
|
|
|
|
/**
|
2024-01-04 12:01:37 +00:00
|
|
|
* Functions for HTML tasks such as escaping or unescaping HTML entities.
|
2023-05-30 23:49:16 +00:00
|
|
|
*
|
docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu): add snippet checks in module, function and class docs to doc checker (#4855)
* chore: add snippet checks to module docs
* fix
* work
* tweak
2024-05-31 02:01:46 +00:00
|
|
|
* ```ts
|
2024-06-03 04:10:27 +00:00
|
|
|
* import { unescape } from "@std/html/entities";
|
|
|
|
* import { assertEquals } from "@std/assert/assert-equals";
|
docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu): add snippet checks in module, function and class docs to doc checker (#4855)
* chore: add snippet checks to module docs
* fix
* work
* tweak
2024-05-31 02:01:46 +00:00
|
|
|
*
|
2024-06-03 04:10:27 +00:00
|
|
|
* assertEquals(unescape("<>'&AA"), "<>'&AA");
|
|
|
|
* assertEquals(unescape("þð"), "þð");
|
docs(assert,cli,data-structures,expect,fmt,front-matter,html,http,jsonc,semver,streams,text,toml,webgpu): add snippet checks in module, function and class docs to doc checker (#4855)
* chore: add snippet checks to module docs
* fix
* work
* tweak
2024-05-31 02:01:46 +00:00
|
|
|
* ```
|
|
|
|
*
|
2023-05-30 23:49:16 +00:00
|
|
|
* @module
|
|
|
|
*/
|
|
|
|
|
|
|
|
export * from "./entities.ts";
|