mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-10-26 11:11:56 +00:00
11 lines
191 B
JavaScript
11 lines
191 B
JavaScript
import {Schema} from "prosemirror-model";
|
|
|
|
import nodes from "./schema-nodes";
|
|
import marks from "./schema-marks";
|
|
|
|
const index = new Schema({
|
|
nodes,
|
|
marks,
|
|
});
|
|
|
|
export default index; |