For some reason, the theme I've made won't turn the double newlines (pressing enter in the Visual editor) into paragraph tags. I tried disabling all plugins and it still doesn't work. It does work if I change to a default theme though. Any ideas?
<?php while ( have_posts() ) : the_post(); ?>
<div class="container">
<h2>
<?php the_title(); ?>
</h2>
</div> <!-- /container -->
<div class="container contentArea">
<?php the_content(); ?>
</div>
<?php endwhile; // end of the loop. ?>