fix: remove escapeHtml

This commit is contained in:
p-sw 2024-06-02 08:44:13 +09:00
parent 425f1325c9
commit 2d051be06b
2 changed files with 1 additions and 5 deletions

View File

@ -2,7 +2,6 @@ import { useRef, useEffect, useState, forwardRef } from "react";
import hljs from "highlight.js"; import hljs from "highlight.js";
import { Button } from "@components/Button"; import { Button } from "@components/Button";
import { useToast } from "@components/Toast"; import { useToast } from "@components/Toast";
import { escapeHtml } from "@/utils/escapeHtml";
export const GITHUB = "https://raw.githubusercontent.com/p-sw/ui/main"; export const GITHUB = "https://raw.githubusercontent.com/p-sw/ui/main";
@ -15,7 +14,7 @@ export const LoadedCode = forwardRef<HTMLPreElement, { from: string }>(
(async () => { (async () => {
const res = await fetch(from); const res = await fetch(from);
const text = await res.text(); const text = await res.text();
setState(escapeHtml(text)); setState(text);
})(); })();
}, [from]); }, [from]);

View File

@ -1,3 +0,0 @@
export const escapeHtml = (unsafe: string) => {
return unsafe.replaceAll('&', '&amp;').replaceAll('<', '&lt;').replaceAll('>', '&gt;').replaceAll('"', '&quot;').replaceAll("'", '&#039;');
}