{% macro escapeText(text, dangerouslyDisableAutoEscaping=false) %} {% if dangerouslyDisableAutoEscaping %} {{ text | safe}} {% else %} {{ text }} {% endif %} {% endmacro %} {% macro escapeTitle(title, url, dangerouslyDisableAutoEscaping=false, showTitleAsUrl=false) %} {% if dangerouslyDisableAutoEscaping %} {% if showTitleAsUrl %} {{ title | safe }} {% else %} {{ title | safe}} {% endif %} {% else %} {% if showTitleAsUrl %} {{ title }} {% else %} {{ title }} {% endif %} {% endif %} {% endmacro %} {% if loaded %} {% if config.showAsList %}