I'd like to change the output format in VSC from html
to plain
. I notice I can do this for individual cell as below, but I wonder if I can change the settings.json for the entire file. I'm using Jupyter Notebook.
Asked
Active
Viewed 3,099 times
4

nilsinelabore
- 4,143
- 17
- 65
- 122
-
Same question here. Did you figure it out by any chance? – shkelda Aug 22 '21 at 16:37
-
Hi @shkelda, unfortunately no – nilsinelabore Aug 22 '21 at 22:51
1 Answers
6
From the vscode notebook console click "customize notebook layout"
click "editting settings.json"
you should see something like this:
{"workbench.colorTheme": "Default Dark+",
"editor.fontSize": 16,
"notebook.lineNumbers": "on",
"notebook.output.textLineLimit": 50,
"notebook.editorOptionsCustomizations": null,
"terminal.integrated.inheritEnv": false,
"notebook.displayOrder": ["image/png", "text/plain"]}
Update the last line with your prefered order of output format.

Yingxu He
- 130
- 1
- 6