Make get_the_content() include paragraphs
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
<!-- Note that get_the_content doesn't return the same thing as what the_content displays. For that you need to do this: -->
$content = apply_filters( 'the_content', get_the_content() );
echo $content;