Path to the MathJax bundle needed to render LaTeX characters Returns ------- str
(self)
| 595 | |
| 596 | @property |
| 597 | def mathjax(self): |
| 598 | """ |
| 599 | Path to the MathJax bundle needed to render LaTeX characters |
| 600 | |
| 601 | Returns |
| 602 | ------- |
| 603 | str |
| 604 | """ |
| 605 | return self._props.get( |
| 606 | "mathjax", |
| 607 | "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/MathJax.js", |
| 608 | ) |
| 609 | |
| 610 | @mathjax.setter |
| 611 | def mathjax(self, val): |
nothing calls this directly
no test coverage detected