import { escape } from "https://deno.land/std@0.222.1/html/mod.ts";
Escapes text for safe interpolation into HTML text content and quoted attributes.
Examples
Example 1
Example 1
import { escape } from "https://deno.land/std@0.222.1/html/entities.ts";
escape("<>'&AA"); // "<>'&AA"
// Characters that don't need to be escaped will be left alone,
// even if named HTML entities exist for them.
escape("þð"); // "þð"