(container: Node)
| 453 | const selection = ed.selection; |
| 454 | |
| 455 | const splitToFormatRoot = (container: Node) => { |
| 456 | const formatRoot = findFormatRoot(ed, container, name, vars, similar); |
| 457 | return wrapAndSplit(ed, formatList, formatRoot, container, container, true, format, vars); |
| 458 | }; |
| 459 | |
| 460 | // Make sure to only check for bookmarks created here (eg _start or _end) |
| 461 | // as there maybe nested bookmarks |
no test coverage detected
searching dependent graphs…