We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2615d21 commit c7fd967Copy full SHA for c7fd967
src/extensions/yfm/Math/view-and-edit.ts
@@ -88,7 +88,7 @@ export abstract class MathNodeView implements NodeView {
88
89
ignoreMutation(mutation: MutationRecord): boolean {
90
// @ts-expect-error
91
- if (mutation.type === 'selection') return true;
+ if (mutation.type === 'selection' || mutation.type === 'attributes') return true;
92
93
return (
94
mutation.type === 'childList' &&
0 commit comments