From 5225b5dc55a2378a06f1ecf79c90ffeb2cc71d5a Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Tue, 9 Jul 2019 15:23:47 -0700 Subject: [PATCH] Use in proc markdown by default (#6315) --- src/sql/workbench/parts/notebook/notebook.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql/workbench/parts/notebook/notebook.contribution.ts b/src/sql/workbench/parts/notebook/notebook.contribution.ts index d608744c2b..8f52010690 100644 --- a/src/sql/workbench/parts/notebook/notebook.contribution.ts +++ b/src/sql/workbench/parts/notebook/notebook.contribution.ts @@ -53,7 +53,7 @@ configurationRegistry.registerConfiguration({ 'properties': { 'notebook.useInProcMarkdown': { 'type': 'boolean', - 'default': product.quality === 'stable' ? false : true, + 'default': true, 'description': localize('notebook.inProcMarkdown', 'Use in-process markdown viewer to render text cells more quickly (Experimental).') } }