How to add your plugins

  1. Fork this repo.
  2. Upload your .js file into the _plugins folder. (Make sure you don’t overwrite anything else).
  3. Add a file with the same name as your .js file, but replacing the .js with .md. This file should look like this:
    ---
    layout: plugin
    title: The name of your plugin
    author: Your (nick)name
    version: The version number
    category: The category (new ones can be created if needed)
    description: |
        A description of your plugin.
        This supports multiline.
        And **markdown**
    ---
    
  4. Create a pull request and wait for approval.