@@ -9,7 +9,6 @@ import type {PeritextSurfaceContextValue} from './context';
99import type { Inline } from '../../json-crdt-extensions/peritext/block/Inline' ;
1010
1111export interface PeritextPlugin {
12-
1312 // --------------------------------------------------- Block-level formatting
1413
1514 peritext ?: (
@@ -28,7 +27,7 @@ export interface PeritextPlugin {
2827
2928 /**
3029 * Renders a custom view for the *caret* (collapsed cursor) in the editor.
31- *
30+ *
3231 * Make sure that this component is treated as `{ display: inline }` by the
3332 * browser. Otherwise, it will break words, which will result in word
3433 * wrapping, and the layout will shift when the caret is moved.
@@ -46,7 +45,7 @@ export interface PeritextPlugin {
4645 * Renders a custom view for the *focus* edge of a selection
4746 * (range expanded cursor) in the editor. The focus edge of the selection is
4847 * the one that moves when the user presses the arrow keys.
49- *
48+ *
5049 * Make sure that this component is treated as `{ display: inline }` by the
5150 * browser. Otherwise, it will break words, which will result in word
5251 * wrapping, and the layout will shift when the selection is moved.
@@ -64,7 +63,7 @@ export interface PeritextPlugin {
6463 * Renders a custom view for the *anchor* edge of a selection
6564 * (range expanded cursor) in the editor. The anchor edge of the selection is
6665 * the one that stays in place when the user presses the arrow keys.
67- *
66+ *
6867 * Make sure that this component is treated as `{ display: inline }` by the
6968 * browser. Otherwise, it will break words, which will result in word
7069 * wrapping, and the layout will shift when the selection is moved.
0 commit comments