1
0
mirror of https://github.com/lektor/lektor-website.git synced 2025-03-08 22:46:41 +01:00
Ionuț Ciocîrlan 6005db06fa
fix typo
2018-02-19 21:22:54 +02:00

22 lines
433 B
Markdown

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 its 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'
```