Quote:
Originally Posted by BeckyEbook
Works. You can add class, id or something else and write "entire" to that field.
|
Ahh, just like that, okay.
It's not the intuitive behavior, but I see the use and the possibilities it offers.
Thank you.
On the other hand, I did make a test:
Source
Code:
<p class="calibre1" id="chapter1">
New attribute string to insert
Code:
class="calibre1" => class="beckyebook" type="text"
Expected:
Code:
<p class="beckyebook" type="text" id="chapter1">
Result:
Code:
<p class="beckyebook" type="text">
New attribute string replaces all attributes! I don't know if this is the desired behavior, but it can be problematic, as in this example where I wanted to keep the id.