AZW3 to HTML - spaces
It is parhap trivial...
In some AZW3 breaks, e.g. like spaces between the sections of the chapters, spaces after the chapter names etc., are defined like this:
<p class="calibre1"></p>
in css:
.calibre1 {
display: block;
height: 1em;
padding-bottom: 0;
padding-top: 0;
text-indent: 0.8em;
border: currentColor none 0;
margin: 0
when AZW3 is converted to HTML (in Calibre), the spaces are the same:
<p class="calibre6"/>
in css:
.calibre6 {
border-bottom: 0;
border-bottom-color: currentColor;
border-bottom-style: none;
border-bottom-width: 0;
border-left-color: currentColor;
border-left-style: none;
border-left-width: 0;
border-right-color: currentColor;
border-right-style: none;
border-right-width: 0;
border-top: 0;
border-top-color: currentColor;
border-top-style: none;
border-top-width: 0;
display: block;
height: 1em;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
padding-bottom: 0;
padding-top: 0;
text-indent: 0.8em
Now, here is the problem: When I open this HTML file in my browser, everything is OK, I can see all the spaces, no worries...
However, when I open the same HTML in Word 10 (for editing or fixing purposes), all these breaks are gone.
My question is: can Word be configured somewhat to show these spaces? Or, can CSS be changed so the Word would recognise them as Paragraph Marks?
Funny thing is that when I convert the AZW3 file to RTF and open it in Word, the spaces – represented by Paragraph Marks – are there…
|