in plugins/mkdocs-atlas-formatting-plugin/mkdocs_atlas_formatting_plugin/parser.py [0:0]
def __init__(self, page_title: str, html: str, webserver: Optional[NoopWebserver] = None):
self.webserver = webserver
self.page_title: str = page_title
self.block_count: int = 0
self.input_lines: List[str] = html.split('\n')
self.output_lines: List[str] = []
self.html: Optional[str] = None
self.tokenize()