{{ subtitle_text }}
{% if enable_word_highlighting %}
{% for bullet_data in bullets_with_highlights %}
{% if bullet_data.text %}
{% set outer_index = loop.index0 %}
{% for word_obj in bullet_data.word_data %}
{{ word_obj.word | safe }}{% if not loop.last %} {% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% else %}
{% if bullet_point_1 %}
{{ bullet_point_1|safe }}
{% endif %}
{% if bullet_point_2 %}
{{ bullet_point_2|safe }}
{% endif %}
{% if bullet_point_3 %}
{{ bullet_point_3|safe }}
{% endif %}
{% if bullet_point_4 %}
{{ bullet_point_4|safe }}
{% endif %}
{% if bullet_point_5 %}
{{ bullet_point_5|safe }}
{% endif %}
{% if bullet_point_6 %}
{{ bullet_point_6|safe }}
{% endif %}
{% endif %}
{% if has_code_snippet %}
{{ code_snippet_content|safe }}
{% endif %}