Toggle current todo item with Mod-Enter

This commit is contained in:
Tom Moor
2023-10-31 22:10:55 -04:00
parent 4af45c68cc
commit a9ff0c245d
5 changed files with 45 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ export const basicExtensions: Nodes = [
* editors that need advanced formatting.
*/
export const richExtensions: Nodes = [
...basicExtensions.filter((n) => n !== SimpleImage),
...basicExtensions.filter((n) => n !== SimpleImage && n !== Keys),
Image,
HardBreak,
CodeBlock,
@@ -109,6 +109,7 @@ export const richExtensions: Nodes = [
Math,
MathBlock,
PreventTab,
Keys,
];
/**