mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-02-28 05:32:52 +00:00
4 lines
111 B
TypeScript
4 lines
111 B
TypeScript
export const escapeHtml = (html: string) => {
|
|
return html.replace(/&/g, "&").replace(/</g, "<");
|
|
};
|