Add node to stash.
(self, node: etree.Element | str, type: str)
| 112 | return None, index + 1 |
| 113 | |
| 114 | def __stashNode(self, node: etree.Element | str, type: str) -> str: |
| 115 | """ Add node to stash. """ |
| 116 | placeholder, id = self.__makePlaceholder(type) |
| 117 | self.stashed_nodes[id] = node |
| 118 | return placeholder |
| 119 | |
| 120 | def __handleInline(self, data: str, patternIndex: int = 0) -> str: |
| 121 | """ |
no test coverage detected