diff --git a/docs/src/docPages/api/keyboard-shortcuts.md b/docs/src/docPages/api/keyboard-shortcuts.md index 2700e454..64486a63 100644 --- a/docs/src/docPages/api/keyboard-shortcuts.md +++ b/docs/src/docPages/api/keyboard-shortcuts.md @@ -94,6 +94,6 @@ new Editor({ extensions: [ CustomBulletList(), // … - ] + ], }) ``` diff --git a/docs/src/docPages/guide/extend-extensions.md b/docs/src/docPages/guide/extend-extensions.md index 12dae775..531f351c 100644 --- a/docs/src/docPages/guide/extend-extensions.md +++ b/docs/src/docPages/guide/extend-extensions.md @@ -28,7 +28,7 @@ new Editor({ extensions: [ CustomBulletList(), // … - ] + ], }) ``` diff --git a/docs/src/docPages/guide/styling.md b/docs/src/docPages/guide/styling.md index d8156de6..4543a5ae 100644 --- a/docs/src/docPages/guide/styling.md +++ b/docs/src/docPages/guide/styling.md @@ -99,9 +99,9 @@ const CustomBold = Bold.extend({ new Editor({ extensions: [ - // … - CustomBold(), - ] + // … + CustomBold(), + ], }) ```