export function attribute(raw: string | number): string { if (typeof raw !== "string") { raw = raw.toString(); } return (raw || "") .replaceAll("<", "<") .replace('"', """) .replaceAll("'", "'"); }