mathjax.py
13 lines
| 308 B
| text/x-python
|
PythonLexer
Matthias BUSSONNIER
|
r8682 | #!/usr/bin/python | ||
MinRK
|
r4652 | """ | ||
Matthias Bussonnier
|
r21604 | `IPython.external.mathjax` is deprecated with IPython 4.0+ | ||
Mark Sienkiewicz at STScI
|
r8154 | |||
Matthias Bussonnier
|
r21604 | mathjax is now install by default with the notebook package | ||
Mark Sienkiewicz at STScI
|
r8154 | |||
Matthias Bussonnier
|
r21604 | """ | ||
Matthias BUSSONNIER
|
r8682 | |||
Matthias Bussonnier
|
r21604 | import sys | ||
Mark Sienkiewicz at STScI
|
r8154 | |||
if __name__ == '__main__' : | ||||
Matthias Bussonnier
|
r21609 | sys.exit("IPython.external.mathjax is deprecated, Mathjax is now installed by default with the notebook package") | ||
MinRK
|
r4652 | |||