fix: Do not parse 😄 style emoji in Markdown paste handler (#3056)

This commit is contained in:
Tom Moor
2022-02-04 07:37:18 -08:00
committed by GitHub
parent 0bee0bbade
commit 4cc7af7874
2 changed files with 2 additions and 2 deletions

View File

@@ -500,7 +500,7 @@ export class Editor extends React.PureComponent<
createPasteParser() {
return this.extensions.parser({
schema: this.schema,
rules: { linkify: true },
rules: { linkify: true, emoji: false },
plugins: this.rulePlugins,
});
}