(editor: Editor, node: DOMNode, options: HTMLDeserializerOptions = {})
| 73 | }, |
| 74 | |
| 75 | transformWithEditor(editor: Editor, node: DOMNode, options: HTMLDeserializerOptions = {}) { |
| 76 | const HTMLDeserializerEditor = Object.assign({}, HTMLDeserializer) |
| 77 | const transforms = HTML_DESERIALIZER_TRANSFORMS.get(editor) ?? [] |
| 78 | |
| 79 | for (const { transform, options } of transforms) { |
| 80 | HTMLDeserializerEditor.with(transform, options) |
| 81 | } |
| 82 | |
| 83 | return HTMLDeserializerEditor.transform(node, options) |
| 84 | }, |
| 85 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…