2021-11-26 16:05:06 +01:00
|
|
|
import {Schema} from "prosemirror-model";
|
|
|
|
|
2022-01-11 17:26:12 +01:00
|
|
|
import nodes from "./schema-nodes";
|
|
|
|
import marks from "./schema-marks";
|
2022-01-07 17:37:36 +01:00
|
|
|
|
2022-01-11 17:26:12 +01:00
|
|
|
const index = new Schema({
|
|
|
|
nodes,
|
|
|
|
marks,
|
2022-01-10 14:38:32 +01:00
|
|
|
});
|
|
|
|
|
2022-01-11 17:26:12 +01:00
|
|
|
export default index;
|