Skip to content

Commit

Permalink
Merge pull request jupyter#1441 from minrk/mathjax-config
Browse files Browse the repository at this point in the history
remove unnecessary _mathjax_config_default
  • Loading branch information
takluyver committed May 11, 2016
2 parents 0f2193c + 13575ea commit a7da781
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions notebook/notebookapp.py
Expand Up @@ -729,11 +729,9 @@ def _mathjax_url_changed(self, name, old, new):
else:
self.log.info("Using MathJax: %s", new)

mathjax_config = Unicode("", config=True,
mathjax_config = Unicode("TeX-AMS_HTML-full,Safe", config=True,
help="""The MathJax.js configuration file that is to be used."""
)
def _mathjax_config_default(self):
return 'TeX-AMS_HTML-full,Safe'

def _mathjax_config_changed(self, name, old, new):
self.log.info("Using MathJax configuration file: %s", new)
Expand Down

0 comments on commit a7da781

Please sign in to comment.