{# Callout text box. Speaker names supported in v0.1.0: owl, marin, tarin, ulrira. Add a new speaker: add a portrait PNG under static/sprites/portraits/.png and a new entry in the _labels dict below. The caller() block holds the body markup (one or more

tags). #} {% macro textbox(speaker, label="") %} {% set _labels = {"owl": "OWL", "marin": "MARIN", "tarin": "TARIN", "ulrira": "ULRIRA"} %} {% set _label = label or _labels.get(speaker, speaker | upper) %}

{% endmacro %}