aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/RichTextSchema.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2019-12-09 17:49:33 -0500
committerBob Zeleznik <zzzman@gmail.com>2019-12-09 17:49:33 -0500
commitabbbde85ca65574709caf37b2c3f313059d3bd37 (patch)
tree6324f304b8e7dda990b996383ca6276aff886cd3 /src/client/util/RichTextSchema.tsx
parentcfaf02757f5aebd2ccce0bbef8b6f5e232932693 (diff)
got rid of unused code in richtextschema
Diffstat (limited to 'src/client/util/RichTextSchema.tsx')
-rw-r--r--src/client/util/RichTextSchema.tsx12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/client/util/RichTextSchema.tsx b/src/client/util/RichTextSchema.tsx
index 8c74c3f68..462ee85e7 100644
--- a/src/client/util/RichTextSchema.tsx
+++ b/src/client/util/RichTextSchema.tsx
@@ -552,18 +552,6 @@ export const marks: { [index: string]: MarkSpec } = {
}]
},
- pFontColor: {
- attrs: {
- color: { default: "yellow" }
- },
- parseDOM: [{ style: 'background: #d9dbdd' }],
- toDOM: (node) => {
- return ['span', {
- style: `color: ${node.attrs.color}`
- }];
- }
- },
-
/** FONT SIZES */
pFontSize: {
attrs: {