mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-04-30 10:34:12 +02: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.`);
|
|
} |