(app)
| 459 | return None |
| 460 | |
| 461 | def setup(app): |
| 462 | from recommonmark.transform import AutoStructify |
| 463 | app.add_domain(GithubURLDomain) |
| 464 | app.connect('autodoc-process-signature', process_signature) |
| 465 | app.connect('autodoc-skip-member', autodoc_skip_member) |
| 466 | app.add_config_value( |
| 467 | 'recommonmark_config', |
| 468 | {'auto_toc_tree_section': 'Contents', |
| 469 | 'enable_math': True, |
| 470 | 'enable_inline_math': True, |
| 471 | 'enable_eval_rst': True |
| 472 | }, True) |
| 473 | app.add_transform(AutoStructify) |
no outgoing calls
no test coverage detected
searching dependent graphs…