View Single Post
Old 05-11-2022, 11:58 AM   #3
DNSB
Bibliophagist
DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.DNSB ought to be getting tired of karma fortunes by now.
 
DNSB's Avatar
 
Posts: 35,464
Karma: 145525534
Join Date: Jul 2010
Location: Vancouver
Device: Kobo Sage, Forma, Clara HD, Lenovo M8 FHD, Paperwhite 4, Tolino epos
Quote:
Originally Posted by JSWolf View Post
Unless you are using version 1.9.2, and you have the same problem, this is never going to be fixed in an old version like you are using.
Jon, it would be much preferred if you actually tested this under 1.9.2 before posting.

Code:
  <figure>
    <img src="../Images/elephant.jpg" alt="Elephant at sunset" class="width90"/>

    <figcaption><b>Figure 2: </b> <i> An elephant at sunset</i></figcaption>
  </figure>
After 1.9.2 prettify:

Code:
  <figure>
    <img src="../Images/elephant.jpg" alt="Elephant at sunset" class="width90"/>

    <figcaption><b>Figure 2: </b><i> An elephant at sunset</i></figcaption>
  </figure>
Added <p></p> tags and prettify:

Code:
  <figure>
    <img src="../Images/elephant.jpg" alt="Elephant at sunset" class="width90"/>

    <figcaption><p><b>Figure 2: </b> <i> An elephant at sunset</i></p></figcaption>
  </figure>
And yes, prettify using 1.92 does remove the space between the </b> and the <i>. OTOH, only a single space shows when the test is displayed though other characters do. Wrapping the text in <p></p> tags will prevent that space from being removed though any string of 2 or more spaces will still be reduced to a single space.

Code:
  <figure>
    <img src="../Images/elephant.jpg" alt="Elephant at sunset" class="width90"/>

    <figcaption><p><b>Figure 2: </b>   a         b      c     d    ee       fff<i> An elephant at sunset</i></p></figcaption>
  </figure>
only shows one space between the alpha characters in the preview pane. See attached image.
Attached Thumbnails
Click image for larger version

Name:	elephant.png
Views:	89
Size:	308.5 KB
ID:	193768  

Last edited by DNSB; 05-11-2022 at 12:01 PM.
DNSB is offline   Reply With Quote