2018-05-04 06:50:36 +02:00
|
|
|
{% extends "plugins.html" %}
|
2018-05-12 18:59:57 +02:00
|
|
|
{% from "macros/plugins.html" import render_plugin_list %}
|
2018-05-04 06:50:36 +02:00
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<h1>Tag: {{ this.tag }}</h1>
|
2018-05-05 08:34:17 +02:00
|
|
|
|
|
|
|
{% for event in site.get('/docs/api/plugins/events').children.all() %}
|
|
|
|
{% if this.tag == event.title %}
|
|
|
|
<p>
|
|
|
|
This is an event emitted by Lektor for plugins to hook.
|
|
|
|
The following plugins hook this event.
|
|
|
|
Take a look at their source code to see how they work!
|
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
<a href="{{ '/docs/plugins'|url }}" class="ref">Intro to Plugins</a>
|
|
|
|
||
|
|
|
|
<a href="{{ '/docs/cli/plugins/'|url }}" class="ref">Plugin Commands</a>
|
|
|
|
||
|
|
|
|
<a href="{{ '/docs/api/plugins'|url }}" class="ref">Plugin API</a>
|
|
|
|
||
|
|
|
|
<a href="{{ event|url }}" class="ref">This Event</a>
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
|
2018-05-04 06:50:36 +02:00
|
|
|
<h2>Plugins:</h2>
|
2018-05-15 01:05:29 +02:00
|
|
|
<p>(*) Asterisks denote official plugins.</p>
|
2018-05-14 23:40:59 +02:00
|
|
|
<div class="plugin">
|
|
|
|
{{ render_plugin_list(this.items) }}
|
|
|
|
</div>
|
2018-12-15 08:01:20 +01:00
|
|
|
|
2018-12-15 19:33:16 +01:00
|
|
|
<p>View a list of all Lektor plugin tags <a href="/plugins/tags" class="ref">here</a>.</p>
|
2018-05-04 06:50:36 +02:00
|
|
|
{% endblock %}
|