mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 18:19:12 +01:00
No latex handler in core.
This commit is contained in:
@@ -312,12 +312,6 @@ export class MainThreadNotebookController implements IMainNotebookController {
|
||||
document?.updateCells(cells);
|
||||
}
|
||||
|
||||
updateNotebookCell(resource: UriComponents, cell: ICell, renderers: number[]): void {
|
||||
let document = this._mapping.get(URI.from(resource).toString());
|
||||
document?.updateRenderers(renderers);
|
||||
document?.updateCell(cell);
|
||||
}
|
||||
|
||||
updateNotebookRenderers(resource: UriComponents, renderers: number[]): void {
|
||||
let document = this._mapping.get(URI.from(resource).toString());
|
||||
document?.updateRenderers(renderers);
|
||||
@@ -351,10 +345,6 @@ export class MainThreadNotebookController implements IMainNotebookController {
|
||||
}
|
||||
}
|
||||
|
||||
// async latexRenderer(value: string): Promise<IMarkdownString | undefined> {
|
||||
// return this._proxy.$latexRenderer(this._viewType, value);
|
||||
// }
|
||||
|
||||
async destoryNotebookDocument(notebook: INotebook): Promise<void> {
|
||||
let document = this._mapping.get(URI.from(notebook.uri).toString());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user