{% 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 %} {% endfor %}
Name Required Default Description
{{ attr.name }} {{ "✓" if attr.required else "✗" }} {{ attr.default if attr.default is not none else "—" }} {{ attr.description }}
{% endif %}
{% endfor %}

Loaded plugins

{% if plugin_infos %} {% else %}

No plugins loaded.

{% endif %}
{% endblock %}