Blade turns newline into <br>

Hi @strarsis,

I did solve the issue, it was the wpautop function. I did fix it with adding this to my functions.php

remove_filter( 'the_content', 'wpautop' );
remove_filter( 'the_excerpt', 'wpautop' );

thanks for thinking along