From 13575ea3766f488ca33c745bf9de9228d010f650 Mon Sep 17 00:00:00 2001 From: Min RK Date: Wed, 11 May 2016 14:29:56 +0200 Subject: [PATCH] remove unnecessary _mathjax_config_default --- notebook/notebookapp.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/notebook/notebookapp.py b/notebook/notebookapp.py index 79dfb182d..a4900b2c8 100644 --- a/notebook/notebookapp.py +++ b/notebook/notebookapp.py @@ -729,11 +729,9 @@ class NotebookApp(JupyterApp): 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)