Updated Creating Plugins (markdown)

Zack 2018-08-27 20:46:57 -04:00
parent d11c3985f7
commit 00f6932301
1 changed files with 1 additions and 1 deletions

@ -2,7 +2,7 @@
1. BandagedBD plugins are limited to a single file.
2. The file must be named as `pluginname.plugin.js`, the plugin name can be whatever you want.
3. Plugin files require a special header [[see this page|Plugin-and-Theme-METAs]]
3. Plugin files require a special header ([[see this page for details|Plugin-and-Theme-METAs]])
4. The name defined in the header must match the variable/classname
5. Plugins must implement the [following functions](#required-functions): `getName`, `getDescription`, `getVersion`, `getAuthor`, `start` and `stop`.
Optionally, you may implement `load` and `observer`. More details on each function below.