mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-03-28 17:42:40 +01:00
10 lines
307 B
JavaScript
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.`);
|
|
} |