1
0
mirror of https://github.com/lektor/lektor-website.git synced 2025-03-07 22:16:41 +01:00
2015-12-19 14:52:17 +01:00

21 lines
318 B
Markdown

title: name
---
type: property
---
summary: The human readable plugin name.
---
body:
This property needs to be set to a human readable name for the plugin. It's
what's shown in the UI to show the UI.
## Example
```python
from lektor.pluginsystem import Plugin
class MyPlugin(Plugin):
name = 'My Plugin'
```