{% extends "base.html" %} {% block description %}Help and reference for content authors.{% endblock %} {% block content %}

{% block title %}Help{% endblock %}

Shortcodes

Use these shortcodes in blog posts and pages to embed rich content.

{% for shortcode in shortcodes %}

{% if shortcode.example %}
Example
{{ shortcode.example }}
{% endif %} {% if shortcode.attributes %}
Attributes
{% for attr in shortcode.attributes %} {% set rule = attr.constraints | string %} {% endfor %}
Name Default Description
{{ attr.name }} {{ attr.default or "—" }}{{ attr.description }}{% if rule %} Must be {{ rule }}; anything else renders nothing.{% endif %}
{% endif %} {% if shortcode.notes %}

{{ shortcode.notes }}

{% endif %}
{% endfor %}

Loaded plugins

{% if plugin_infos %} {% else %}

No plugins loaded.

{% endif %}
{% endblock %}