Run the plot directive.
(self)
| 290 | } |
| 291 | |
| 292 | def run(self): |
| 293 | """Run the plot directive.""" |
| 294 | try: |
| 295 | return run(self.arguments, self.content, self.options, |
| 296 | self.state_machine, self.state, self.lineno) |
| 297 | except Exception as e: |
| 298 | raise self.error(str(e)) |
| 299 | |
| 300 | |
| 301 | def _copy_css_file(app, exc): |