View Single Post
Old 01-07-2026, 09:25 AM   #221
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 82,287
Karma: 151278869
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by Karellen View Post
@kovidgoyal

There seems to be a bug in the Editor when it comes to copying and pasting.

When editing I copy bits of code from a previous book into the current book.
I am trying to copy...

PHP Code:
<class="copyright"> </p
There should be a &nbsp; between those tags, but it gets stripped out and replaced with a normal space.

Any idea what could be causing that? It's never happened before. I am using v8.99.3
Given you want a line space, it's best to do this via CSS.
Code:
<p class="cop">Copyright © 2025 Jodi Taylor</p>

.cop {
  font-size: small;
  text-indent: 0;
  margin-top: 0.8em;
}

Last edited by JSWolf; 01-07-2026 at 09:27 AM.
JSWolf is offline   Reply With Quote