Leave a style context.
(self)
| 505 | return self.current_style |
| 506 | |
| 507 | def leave_style(self) -> Style: |
| 508 | """Leave a style context.""" |
| 509 | style = self.style_stack.pop() |
| 510 | return style |
| 511 | |
| 512 | |
| 513 | class Markdown(JupyterMixin): |
no test coverage detected