Skip to content

Commit

Permalink
docs(html): improve API docs (#4878)
Browse files Browse the repository at this point in the history
  • Loading branch information
kt3k authored May 29, 2024
1 parent bd7c465 commit 595d812
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions _tools/check_docs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ const ENTRY_POINTS = [
"../fmt/duration.ts",
"../fmt/printf.ts",
"../front_matter/mod.ts",
"../html/mod.ts",
"../http/mod.ts",
"../internal/mod.ts",
"../jsonc/mod.ts",
Expand Down
11 changes: 9 additions & 2 deletions html/entities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const rawRe = new RegExp(`[${[...rawToEntity.keys()].join("")}]`, "g");
/**
* Escapes text for safe interpolation into HTML text content and quoted attributes.
*
* @example
* @example Usage
* ```ts
* import { escape } from "@std/html/entities";
*
Expand All @@ -35,6 +35,9 @@ const rawRe = new RegExp(`[${[...rawToEntity.keys()].join("")}]`, "g");
* // even if named HTML entities exist for them.
* escape("þð"); // "þð"
* ```
*
* @param str The string to escape.
* @returns The escaped string.
*/
export function escape(str: string): string {
return str.replaceAll(rawRe, (m) => rawToEntity.get(m)!);
Expand All @@ -57,7 +60,7 @@ const entityListRegexCache = new WeakMap<EntityList, RegExp>();
/**
* Unescapes HTML entities in text.
*
* @example
* @example Usage
* ```ts
* import { unescape } from "@std/html/entities";
*
Expand All @@ -70,6 +73,10 @@ const entityListRegexCache = new WeakMap<EntityList, RegExp>();
*
* unescape("&thorn;&eth;", { entityList }); // "þð"
* ```
*
* @param str The string to unescape.
* @param options Options for unescaping.
* @returns The unescaped string.
*/
export function unescape(
str: string,
Expand Down

0 comments on commit 595d812

Please sign in to comment.