no mathjax (#6995)

This commit is contained in:
Chris LaFreniere
2019-08-29 18:07:05 -07:00
committed by GitHub
parent f51f1989aa
commit 2d6f69da1c

View File

@@ -236,7 +236,7 @@ export class PerNotebookServerInstance implements IServerInstance {
let token = await notebookUtils.getRandomToken();
this._uri = vscode.Uri.parse(`http://localhost:${port}/?token=${token}`);
this._port = port.toString();
let startCommand = `"${this.options.install.pythonExecutable}" -m jupyter notebook --no-browser --notebook-dir "${notebookDirectory}" --port=${port} --NotebookApp.token=${token}`;
let startCommand = `"${this.options.install.pythonExecutable}" -m jupyter notebook --no-browser --no-mathjax --notebook-dir "${notebookDirectory}" --port=${port} --NotebookApp.token=${token}`;
this.notifyStarting(this.options.install, startCommand);
// Execute the command