Vanessa 2025-02-27 22:13:41 +08:00
parent 35ccbaa0f0
commit f67bd1ad7f
3 changed files with 13 additions and 3 deletions

View file

@ -229,7 +229,7 @@ export class Toolbar {
public setInlineMark(protyle: IProtyle, type: string, action: "range" | "toolbar", textObj?: ITextOption) {
const nodeElement = hasClosestBlock(this.range.startContainer);
if (!nodeElement) {
if (!nodeElement || nodeElement.getAttribute("data-type") === "NodeCodeBlock") {
return;
}
const endElement = hasClosestBlock(this.range.endContainer);