Quote:
Originally Posted by Karellen
@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:
<p class="copyright"> </p>
There should be a 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;
}