diff --git a/src/Components/Inputs/TextEditor/SaveModule.tsx b/src/Components/Inputs/TextEditor/SaveModule.tsx
index dc43fe2..6810645 100644
--- a/src/Components/Inputs/TextEditor/SaveModule.tsx
+++ b/src/Components/Inputs/TextEditor/SaveModule.tsx
@@ -20,7 +20,7 @@ export default function SaveModule(props: Props) {
const { state } = ctx;
let md = getMarkdown(state);
- md = md.replace(/\n(?=\n)/g, "\n\n
\n");
+ // md = md.replace(/\n(?=\n)/g, "\n\n
\n");
onChange(md);
}, [], 500)