Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 960 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (19 loc) · 960 Bytes

Contributing

All contributions are welcome!

To add a new plugins, look at src/data/plugins.json. All fields are required except for image and description. If you want to provide an image either enter the url or add the image in src/assets/img as .png, .jpg or .gif or enter the direct URL. You can use markdown for the desription and overview. If the description is very log you can force a new row by providing expand=true. See below for an example.

{
  "plugins": [{
    "name": "Name for the plugin",
    "url": "The website",
    "author": {
      "name": "The authors name is displayed next to the plugin name",
      "url": "and links to this url"
    },
    "image": "an optional image path or empty string",
    "expand": true,
    "overview": "A short description",
    "description": "A longer description displayed below the first paragraph. You can use markdown syntax to add links, bold, headlines etc."
  }
}