(self)
| 738 | class Math(TextDisplayObject): |
| 739 | |
| 740 | def _repr_latex_(self): |
| 741 | s = r"$\displaystyle %s$" % self.data.strip('$') |
| 742 | if self.metadata: |
| 743 | return s, deepcopy(self.metadata) |
| 744 | else: |
| 745 | return s |
| 746 | |
| 747 | |
| 748 | class Latex(TextDisplayObject): |
nothing calls this directly
no outgoing calls
no test coverage detected