While using RichTextUploadingField by CKEDITOR in an DJANGO project, when i tried saving space though with python codes i tried to validate (.strip() and .isspace()) it got bypass.
when i check the DB the entry in the DB was as follows:
<p> </p>
<p> </p>
<p> </p>
When i add styles to the empty spaces it also got working as:
<p><u><em><strong> </strong></em></u></p>
<p> </p>
<p><u><em><strong> </strong></em></u></p>
<p> </p>
<p><u><em><strong> </strong></em></u></p>
<p><u><em><strong> </strong></em></u></p>
Does any one have any idea for solving this issue of saving empty spaces int he DB.