Skip to content

Commit

Permalink
Fix Docker config (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisChinchilla authored Aug 21, 2023
1 parent 12c6c54 commit 4721b0d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -35,7 +35,7 @@
"contributes": {
"configuration": {
"type": "object",
"title": "Pandoc Option Configuration",
"title": "Pandoc options",
"properties": {
"pandoc.executable": {
"type": "string",
Expand Down Expand Up @@ -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"
}
}
Expand Down

0 comments on commit 4721b0d

Please sign in to comment.