Skip to content

Commit e843fe1

Browse files
committed
disable other output formats
1 parent 3b3b3e9 commit e843fe1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/extension/notebook.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,9 +354,10 @@ export class RNotebookProvider implements vscode.NotebookContentProvider, vscode
354354
return {
355355
outputKind: vscode.CellOutputKind.Rich,
356356
data: {
357-
'ms-vscode.r-notebook/table': response.result.data,
358-
'text/markdown': response.result.markdown,
359-
'application/json': response.result.data,
357+
'ms-vscode.r-notebook/table': response.result.data
358+
// TODO: make the html table default, no clue how to do this.
359+
// 'text/markdown': response.result.markdown,
360+
// 'application/json': response.result.data,
360361
},
361362
}
362363
}

0 commit comments

Comments
 (0)