Skip to content

Commit

Permalink
Merge branch 'release/0.1.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
pipisebastian committed Nov 28, 2024
2 parents 608a8a4 + 574a2f9 commit fb10322
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions client/src/features/editor/utils/domSyncUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,7 @@ const setsEqual = (a: Set<string>, b: Set<string>): boolean => {
};

const sanitizeText = (text: string): string => {
return text
.replace(/<br>/g, "\u00A0")
.replace(/</g, "&lt;")
.replace(/>/g, "&gt;")
.replace(/&/g, "&amp;");
return text.replace(/<br>/g, "\u00A0");
};

// ๋ฐฐ์—ด ๋น„๊ต ํ—ฌํผ ํ•จ์ˆ˜
Expand Down

0 comments on commit fb10322

Please sign in to comment.