Updated Creating Plugins (markdown)

Zack 2018-08-27 20:45:50 -04:00
parent 203ffb10b1
commit 843402468d
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.