22 lines
434 B
Plaintext
22 lines
434 B
Plaintext
|
title: description
|
||
|
---
|
||
|
type: property
|
||
|
---
|
||
|
summary: The human readable plugin description.
|
||
|
---
|
||
|
body:
|
||
|
|
||
|
This is a short string with some more explanation of what the plugin does.
|
||
|
It's shown in the UI to give the user some ideas about it's operation.
|
||
|
|
||
|
## Example
|
||
|
|
||
|
```python
|
||
|
from lektor.pluginsystem import Plugin
|
||
|
|
||
|
|
||
|
class MyPlugin(Plugin):
|
||
|
name = 'My Plugin'
|
||
|
description = 'This is a small plugin I wrote for testing purposes'
|
||
|
```
|