mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-02-07 16:04:19 +01:00
7 lines
226 B
TypeScript
7 lines
226 B
TypeScript
export const escapeHtml = (html: string) => {
|
|
return html.replace(/&/g, "&").replace(/</g, "<");
|
|
};
|
|
|
|
export const escapeAttr = (html: string) => {
|
|
return html.replace(/"/g, """).replace(/'/g, "'");
|
|
};
|