DAWN THEME - Image-Banner section - How to create line breaks for subtitle text block

Hi @Smiley1311

Thanks for your invitation :slightly_smiling_face:

1: Online store > themes > Actions > Edit code > Sections > image-banner.liquid

heading

## 
     {% assign block_heading_arr = block.settings.heading | split: " - " %}
     {% for block_heading_item in block_heading_arr %}
          {{ block_heading_item | escape }}
     {% endfor %}

text


     {% assign block_text_arr = block.settings.text | split: " - " %}
     {% for block_text_item in block_text_arr %}
         {{ block_text_item | escape }}
     {% endfor %}