| title | underscript.plugin() |
|---|---|
| categories | underscript |
| method | true |
The Plugin API is a service made to allow elevated access to UnderScript's internals.
underscript.plugin(name);
name : Name of plugin (See name restrictions)
Return Value
: Returns Plugin object
{% for page in site.api %} {% if page.plugin and page.method %} {{ page.title }} : {{ page.excerpt }} {% endif %} {% endfor %}
{% for page in site.api %} {% if page.plugin and page.property %} {{ page.title }} : {{ page.excerpt }} {% endif %} {% endfor %}
Plugin names have the following restrictions:
- No two plugins may share the same name
- Plugin names cant be longer than 20 characters
- Plugin names can only contain alphanumeric characters and space (A-Z0-9 )
Any plugin names outside these bounds will trigger an error and not create a plugin