Quote:
Can anyone do that using Calibre with that HTML?
If yes, how?
|
There may be ways using CSS, depending on what else is going on there. Here is one way: assuming Calibre will not let you depend on the classname, I have never seen Calibre mess with the values of the TITLE attribute. If all your footnote link titles contain the word "Note" as in your example, this CSS rule works in most user agents:
Quote:
a[title~="Note"] {
vertical-align: super;
font-size: 0.8em;
padding: 0 4px;
font-weight: bold;
}
|