When I create post wordpress not save spaces between lines:
Code:
<div class="postas">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<p><?php the_content(); ?></p>
<?php endwhile; endif; ?>
<!-- End Main Content -->
</div>
WordPress only add symbol if I press double-click Enter button, but if I second time edit this post symbols disapear
WordPress does some auto-formatting on your posts. The auto-formatting occurs when you save your post, or if you swtich between the HTML and Visual modes in the content editor.
If you are trying to do something that gets erased by this formatting, you may want to try disabling the auto-formatting WordPress includes.
You can do this by installing this plugin: http://wordpress.org/extend/plugins/ps-disable-auto-formatting/
After installing the plugin, you can choose to enable/disable formatting in your Dashboard Settings.