Vanessa 2024-12-04 19:46:49 +08:00
parent c36d397877
commit 61d69cc213
4 changed files with 0 additions and 12 deletions

View file

@ -21,7 +21,6 @@ export class Options {
classes: {
preview: "",
},
debugger: Constants.NODE_ENV === "development",
hint: {
delay: 200,
emoji: {

View file

@ -1,6 +0,0 @@
export const log = (method: string, content: string, type: string, print: boolean) => {
if (print) {
// @ts-ignore
console.log(`${method} - ${type}: ${content}`);
}
};

View file

@ -1,4 +1,3 @@
import {log} from "../util/log";
import {focusBlock, focusByWbr} from "../util/selection";
import {Constants} from "../../constants";
import * as dayjs from "dayjs";
@ -174,8 +173,6 @@ export const input = async (protyle: IProtyle, blockElement: HTMLElement, range:
) &&
!(tempElement.content.childElementCount === 1 && tempElement.content.firstElementChild.classList.contains("code-block") && type === "NodeCodeBlock")
) {
log("SpinBlockDOM", blockElement.outerHTML, "argument", protyle.options.debugger);
log("SpinBlockDOM", html, "result", protyle.options.debugger);
if (blockElement.getAttribute("data-type") === "NodeHeading" && blockElement.getAttribute("fold") === "1" &&
tempElement.content.firstElementChild.getAttribute("data-subtype") !== blockElement.dataset.subtype) {
setFold(protyle, blockElement, undefined, undefined, false);

View file

@ -458,8 +458,6 @@ interface IProtyleOptions {
}
/** 内部调试时使用 */
_lutePath?: string;
/** 是否显示日志。默认值: false */
debugger?: boolean;
/** 是否启用打字机模式。默认值: false */
typewriterMode?: boolean;
/** 多语言。默认值: 'zh_CN' */