(xmlBlock: Element, workspace: Workspace)
| 612 | * @returns The root block created. |
| 613 | */ |
| 614 | export function domToBlock(xmlBlock: Element, workspace: Workspace): Block { |
| 615 | const block = domToBlockInternal(xmlBlock, workspace); |
| 616 | if (workspace.rendered) renderManagement.triggerQueuedRenders(); |
| 617 | return block; |
| 618 | } |
| 619 | |
| 620 | /** |
| 621 | * Decode an XML block tag and create a block (and possibly sub blocks) on the |
nothing calls this directly
no test coverage detected