fix: remove escapeHtml
This commit is contained in:
parent
425f1325c9
commit
2d051be06b
@ -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]);
|
||||||
|
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
export const escapeHtml = (unsafe: string) => {
|
|
||||||
return unsafe.replaceAll('&', '&').replaceAll('<', '<').replaceAll('>', '>').replaceAll('"', '"').replaceAll("'", ''');
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user