diff options
author | bob <bcz@cs.brown.edu> | 2019-09-06 10:11:23 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-09-06 10:11:23 -0400 |
commit | eb05b987d7a1b2ca2e50268a0c15f2de7d44c5bd (patch) | |
tree | 50c4963cbd0c2433b4b76d73744b23af7749c532 /src/client/util/RichTextSchema.tsx | |
parent | 95f773b56b8ed4fa95b1fd308c19baee1744275a (diff) |
cleanup of prosemirror stuff.
Diffstat (limited to 'src/client/util/RichTextSchema.tsx')
-rw-r--r-- | src/client/util/RichTextSchema.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/util/RichTextSchema.tsx b/src/client/util/RichTextSchema.tsx index 675c1d387..baa95acb0 100644 --- a/src/client/util/RichTextSchema.tsx +++ b/src/client/util/RichTextSchema.tsx @@ -103,7 +103,6 @@ export const nodes: { [index: string]: NodeSpec } = { textslice: { default: undefined }, }, group: "inline", - inclusive: false, toDOM(node) { const attrs = { style: `width: 40px` }; return ["span", { ...node.attrs, ...attrs }]; @@ -333,7 +332,6 @@ export const marks: { [index: string]: MarkSpec } = { }, ], inclusive: false, - priority: 100, toDOM() { return ['span', { style: 'text-decoration: underline; text-decoration-style: dotted; text-decoration-color: rgba(204, 206, 210, 0.92)' |