diff --git a/wax-prosemirror-schema/src/marks/strongMark.js b/wax-prosemirror-schema/src/marks/strongMark.js
index 32b9482a176d9ee2af6e4fcfe5b10b43c2ad06ad..bea068b2906db5cb19232e364a3b5676c0da1ea2 100644
--- a/wax-prosemirror-schema/src/marks/strongMark.js
+++ b/wax-prosemirror-schema/src/marks/strongMark.js
@@ -4,11 +4,11 @@ const strong = {
     {
       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];