{% if node.summary %} {% if 'interact with the **' in node.summary or 'interact with **' or 'interacting with the **' in node.summary %} {% set parts = node.summary | split('**') %} {% if parts|length >= 3 %} {% set service_name = parts[1] %} {% set new_summary = parts[0] ~ '' ~ service_name ~ '' ~ parts[2] %} {% endif %} {% endif %}

{{ new_summary ? new_summary | raw : node.summary}}

{% if 'used to interact with' in node.summary %} {% endif %} {% endif %}