Allow <br> Tag in Text Block

Hi,

i"ve been searching for a solution now for a while for this.

Is there a way to allow
Tags in a text block? Or any other way to allow users to insert multiple linebreaks in the text block editor that actually show up in the frontend? The default behaviour seems to be to actually display “
” as text in the frontend and not convert it to a HTML tag…

Thanks a lot!

A quick workaround could be multiple lines but in each line you put a &nbsp; character. Like this:

text1
&nbsp;
&nbsp;
&nbsp;
text2

This will render as 3 empty lines between text 1 and 2. (given your kirby setup has the same rules as mine)

did you tried the writer field ?

If you enter Shift+Enter multiple times, you should get multiple br tags in a text block.

1 Like

Yapp, that solved it. Thanks!!