diff --git a/wax-prosemirror-schema/src/marks/strongMark.js b/wax-prosemirror-schema/src/marks/strongMark.js index bea068b2906db5cb19232e364a3b5676c0da1ea2..e1fc8ea10cb4d8796a9a275513869770ef9bb524 100644 --- a/wax-prosemirror-schema/src/marks/strongMark.js +++ b/wax-prosemirror-schema/src/marks/strongMark.js @@ -1,19 +1,18 @@ const strong = { parseDOM: [ - { tag: "strong" }, + { tag: 'strong' }, + // This works around a Google Docs misbehavior where + // pasted content will be inexplicably wrapped in `<b>` + // tags with a font-weight normal. + { tag: 'b', getAttrs: node => node.style.fontWeight !== 'normal' && null }, { - tag: "b", - getAttrs: node => node.style.fontWeight != "normal" && null - } - // { - // style: "font-weight", - // getAttrs: value => /^(bold(er)?|[5-9]\d{2,})$/.test(value) && null - // } + style: 'font-weight', + getAttrs: value => /^(bold(er)?|[5-9]\d{2,})$/.test(value) && null, + }, ], - toDOM(hook, next) { - hook.value = ["strong", 0]; - next(); - } + toDOM() { + return ['strong', 0]; + }, }; export default strong; diff --git a/wax-prosemirror-services/src/InlineAnnotations/StrongService/StrongService.js b/wax-prosemirror-services/src/InlineAnnotations/StrongService/StrongService.js index 21d9ad3d4528fe86bfae4877ef2a695e4c09b6b8..44f66b6ecd169d24288c7961726665b6512e2a46 100644 --- a/wax-prosemirror-services/src/InlineAnnotations/StrongService/StrongService.js +++ b/wax-prosemirror-services/src/InlineAnnotations/StrongService/StrongService.js @@ -1,23 +1,20 @@ -import Service from "../../Service"; -import { toggleMark } from "prosemirror-commands"; -import { strongMark } from "wax-prosemirror-schema"; -import Strong from "./Strong"; +import Service from '../../Service'; +import { toggleMark } from 'prosemirror-commands'; +import { strongMark } from 'wax-prosemirror-schema'; +import Strong from './Strong'; class StrongService extends Service { boot() { - const shortCuts = this.container.get("ShortCuts"); - shortCuts.addShortCut({ "Mod-b": toggleMark(this.schema.marks.strong) }); + const shortCuts = this.container.get('ShortCuts'); + shortCuts.addShortCut({ 'Mod-b': toggleMark(this.schema.marks.strong) }); } register() { - this.container.bind("Strong").to(Strong); - const createMark = this.container.get("CreateMark"); - createMark( - { - strong: strongMark - }, - { toWaxSchema: true } - ); + this.container.bind('Strong').to(Strong); + const createMark = this.container.get('CreateMark'); + createMark({ + strong: strongMark, + }); } }