Skip to content

Instantly share code, notes, and snippets.

@FBoucher
Last active February 4, 2019 12:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FBoucher/ff8b1ffce79962f3305b1bbb1ec82251 to your computer and use it in GitHub Desktop.
Save FBoucher/ff8b1ffce79962f3305b1bbb1ec82251 to your computer and use it in GitHub Desktop.
VSCode task to convert Mardown to Html into the terminal (dependancy: npm md2html)
{
"version": "2.0.0",
"tasks": [
{
"label": "Compile Markdown",
"type": "shell",
"command": "md2html ${file}",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": false,
"reveal": "always",
"focus": false,
"panel": "new",
"showReuseMessage": false,
"clear": true
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment