Files
vscode-front-matter/sample/script-sample.js
2021-07-07 12:36:48 +02:00

10 lines
307 B
JavaScript

const arguments = process.argv;
if (arguments && arguments.length > 0) {
const workspaceArg = arguments[2]; // The workspace path
const fileArg = arguments[3]; // The file path
const frontMatterArg = arguments[4]; // Front matter data
console.log(`The content returned for your notification.`);
}