(self)
| 4414 | yield Markdown() |
| 4415 | |
| 4416 | async def on_mount(self) -> None: |
| 4417 | markdown = self.query_one(Markdown) |
| 4418 | for line in MD: |
| 4419 | await markdown.append(line) |
| 4420 | await asyncio.sleep(0.01) |
| 4421 | |
| 4422 | assert snap_compare(MDApp(), press=["1", "wait:500"]) |
| 4423 |