@Kani Thank you very much and for your quick reply. ( I tried to do a solution myself but didn’t have it quite in the right place. I will analyze your code and learn from it! Thank you.)
Hi @Kani - I’m using Craft 9.0 and I can’t get this solution to work. I’m trying to add line breaks in the image banner subtitle. Can you please break it down in more detail? Thank you!
This was good, i modified it in two ways though. For those who dont realize how it works, you need to type " - " (without quotation marks). I changed the - to # since thats likely less used typing. Also I made it insert a paragraph break rather than what was the equalivalent of a line break. If anyone uses my version, be sure to change the - to # in the first block of code.
{%- when 'text' -%}
{% assign block_text_arr = block.settings.text | split: "#" %}
{% for block_text_item in block_text_arr %}
{{ block_text_item | escape }}
{% endfor %}