When I format a WordPress loop block it breaks the line like
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) :
the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
Is there a way to disable that so the formatted code looks like
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
Thanks