{% extends "layout.html" %} {% from "macros/docs.html" import get_doc_icon, get_doc_link, get_doc_header %} {% block title %}{{ (this.title ~ ' | ') if this.title != 'Documentation' }}Documentation{% endblock %} {% block body %}
{% if this.body.toc %}

This Page

    {% for item in this.body.toc recursive %}
  • {{ item.title }}{% if item.children %}
      {{ loop(item.children) }}
    {% endif %}
  • {% endfor %}
{% endif %}
{{ get_doc_header(this) }} {{ this.body }} {% if this.parent._slug == 'events' %} {% if this._slug in site.query('/plugins').distinct('tags') %}

A list of some plugins that make use of this event is available here.

{% endif %} {% endif %} {% if this.version_history %}

Version Info

{{ this.version_history }}
{% endif %} {% if this.children %} {% endif %} {% if this.allow_comments %}

Comments

{{ render_disqus_comments() }}
{% endif %}
{% endblock %}