19 lines
652 B
JavaScript
19 lines
652 B
JavaScript
|
import { schema } from "prosemirror-markdown"
|
||
|
import { Schema } from "prosemirror-model";
|
||
|
|
||
|
export const writeFreelySchema = new Schema({
|
||
|
nodes: schema.spec.nodes.remove("blockquote")
|
||
|
.remove("horizontal_rule")
|
||
|
.remove("hard_break")
|
||
|
.addToEnd("readmore", {
|
||
|
inline: false,
|
||
|
content: "",
|
||
|
group: "block",
|
||
|
draggable: true,
|
||
|
toDOM: (node) => ["div", { class: "editorreadmore", style: "width: 100%;text-align:center" }, "Read more..."],
|
||
|
parseDOM: [{ tag: "div.editorreadmore" }],
|
||
|
}),
|
||
|
marks: schema.spec.marks,
|
||
|
});
|
||
|
|
||
|
console.log({ writeFreelySchema })
|