(self, key: int)
| 250 | self.rawHtmlBlocks = [] |
| 251 | |
| 252 | def get_placeholder(self, key: int) -> str: |
| 253 | return HTML_PLACEHOLDER % key |
| 254 | |
| 255 | def store_tag(self, tag: str, attrs: dict[str, str], left_index: int, right_index: int) -> str: |
| 256 | """Store tag data and return a placeholder.""" |
no outgoing calls