Timothy Jaeryang Baek 1 month ago
parent
commit
901c997054
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/components/common/RichTextInput.svelte

+ 1 - 1
src/lib/components/common/RichTextInput.svelte

@@ -1149,7 +1149,7 @@
 									const lineStart = $from.before($from.depth);
 									const lineEnd = $from.after($from.depth);
 									const lineText = state.doc.textBetween(lineStart, lineEnd, '\n', '\0').trim();
-									if (lineText === '```') {
+									if (lineText.startsWith('```')) {
 										// Fix GitHub issue #16337: prevent backtick removal for lines starting with ```
 										return false; // Let ProseMirror handle the Enter key normally
 									}