Hi all, hope you're doing well.
I'm adding a spaced em-dash via a CSS rule:
Code:
title::after
{
content: ' — ';
}
In other readers it works just fine, but when I open in Calibre, the em-dash has been replaced:
Code:
title::after {
content: ' — ';
}
Em-dash in the text body works fine, it's only the pseudo-element that's causing a problem.
Both the CSS and the XHTML files are defined as utf-8.
Any ideas would be helpful!