14 lines
320 B
Python
14 lines
320 B
Python
|
#!/usr/bin/python
|
||
|
"""
|
||
|
`yap_ipython.external.mathjax` is deprecated with yap_ipython 4.0+
|
||
|
|
||
|
mathjax is now install by default with the notebook package
|
||
|
|
||
|
"""
|
||
|
|
||
|
import sys
|
||
|
|
||
|
if __name__ == '__main__' :
|
||
|
sys.exit("yap_ipython.external.mathjax is deprecated, Mathjax is now installed by default with the notebook package")
|
||
|
|