mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
10 lines
330 B
JavaScript
10 lines
330 B
JavaScript
import { Extension } from "@tiptap/core";
|
|
import codemark from "prosemirror-codemark";
|
|
// import "prosemirror-codemark/dist/codemark.css";
|
|
export var Codemark = Extension.create({
|
|
name: "codemarkPlugin",
|
|
addProseMirrorPlugins: function () {
|
|
return codemark({ markType: this.editor.schema.marks.code });
|
|
},
|
|
});
|