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 157eb5f commit 48c29ddCopy full SHA for 48c29dd
browser/components/CodeEditor.js
@@ -63,6 +63,8 @@ export default class CodeEditor extends React.Component {
63
64
this.formatTable = () => this.handleFormatTable()
65
this.editorActivityHandler = () => this.handleEditorActivity()
66
+
67
+ this.turndownService = new TurndownService()
68
}
69
70
handleSearch (msg) {
@@ -550,6 +552,7 @@ export default class CodeEditor extends React.Component {
550
552
551
553
554
const pastedHtml = clipboardData.getData('text/html')
555
+ console.log(pastedHtml)
556
if (pastedHtml !== '') {
557
this.handlePasteHtml(e, editor, pastedHtml)
558
} else if (dataTransferItem.type.match('image')) {
0 commit comments