From 4721b0d7d42a2c4a307d21cad2b98fde1204c065 Mon Sep 17 00:00:00 2001 From: Chris Chinchilla Date: Mon, 21 Aug 2023 11:53:34 +0200 Subject: [PATCH] Fix Docker config (#28) --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 1274b45..01acfc4 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vscode-pandoc", "description": "Renders markdown through pandoc", - "version": "0.4.4", + "version": "0.4.5", "publisher": "ChrisChinchilla", "icon": "images/logo.png", "license": "SEE LICENSE", @@ -35,7 +35,7 @@ "contributes": { "configuration": { "type": "object", - "title": "Pandoc Option Configuration", + "title": "Pandoc options", "properties": { "pandoc.executable": { "type": "string", @@ -79,12 +79,12 @@ }, "pandoc.render.openViewer": { "type": "boolean", - "default": "true", + "default": true, "description": "specify if the extension will open the rendered document in it's default viewer" }, "pandoc.useDocker": { "type": "boolean", - "default": "false", + "default": false, "description": "specify if the extension will run pandoc from a docker container" } }