mirror of
https://github.com/amitwh/markdown-converter.git
synced 2026-08-02 10:00:17 +05:30
feat(plugins): add sample plugin demonstrating the system
Amit Haridas
This commit is contained in:
@@ -0,0 +1,12 @@
|
|||||||
|
const { PluginAPI } = require('../../plugin-api');
|
||||||
|
|
||||||
|
class SamplePlugin extends PluginAPI {
|
||||||
|
init(context) {
|
||||||
|
this.context = context;
|
||||||
|
context.commands.register('hello', 'Sample: Hello World', () => {
|
||||||
|
console.log('[SamplePlugin] Hello from the plugin system!');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = { Plugin: SamplePlugin };
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"id": "_sample",
|
||||||
|
"name": "Sample Plugin",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"description": "Demonstrates the plugin system. Safe to delete.",
|
||||||
|
"icon": "puzzle",
|
||||||
|
"extensionPoints": {
|
||||||
|
"commands": [
|
||||||
|
{ "id": "hello", "label": "Sample: Hello World", "shortcut": "" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"settings": []
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user