diff --git a/docs/src/docPages/api/keyboard-shortcuts.md b/docs/src/docPages/api/keyboard-shortcuts.md index 2700e454d..64486a63d 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 12dae7755..531f351c4 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 d8156de62..4543a5ae3 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(), + ], }) ```