mirror of https://github.com/fantasticit/think.git
tiptap: add debug console
This commit is contained in:
parent
fea52025fe
commit
b8f174f482
|
@ -83,6 +83,20 @@ export const Paste = Extension.create<IPasteOptions>({
|
||||||
const markdownText = event.clipboardData.getData('text/markdown');
|
const markdownText = event.clipboardData.getData('text/markdown');
|
||||||
const { state, dispatch } = view;
|
const { state, dispatch } = view;
|
||||||
|
|
||||||
|
if (typeof window !== 'undefined') {
|
||||||
|
if (window.location.search.includes('dev=1')) {
|
||||||
|
console.group();
|
||||||
|
console.log('paste', {
|
||||||
|
text,
|
||||||
|
vscode,
|
||||||
|
node,
|
||||||
|
markdownText,
|
||||||
|
});
|
||||||
|
console.log(html);
|
||||||
|
console.groupEnd();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const { markdownToProsemirror } = extensionThis.options;
|
const { markdownToProsemirror } = extensionThis.options;
|
||||||
|
|
||||||
// 直接复制节点
|
// 直接复制节点
|
||||||
|
|
Loading…
Reference in New Issue