(editor: Editor)
| 5 | import { createNodeId } from './withNodeId'; |
| 6 | |
| 7 | const withNormalization = (editor: Editor) => { |
| 8 | return withListNormalization( |
| 9 | withInlineNormalization(withLayoutNormalization(editor)) |
| 10 | ); |
| 11 | }; |
| 12 | |
| 13 | const withLayoutNormalization = (editor: Editor) => { |
| 14 | const { normalizeNode } = editor; |
no test coverage detected