I have an xml source with the following content:
and I want to add curly double quotation marks around the quote. To get this:
I want to do something like this in the css:
but I just get nothing - same if referenced by unicode value. Pasting the actual uniode char between two standard double quotation marks causes Prince to fail - no doubt because the CSS is now no longer UTF-8 or ASCII.
Short of transforming the xml, can anyone offer a suggestion?
TIA
Nick
<para>Jane proclaimed <quote>I want to marry a Prince</quote>, and sighed a long sigh.<para>
and I want to add curly double quotation marks around the quote. To get this:
Jane proclaimed “I want to marry a Prince”, and sighed a long sigh.
I want to do something like this in the css:
quote::before {
content: “
}
but I just get nothing - same if referenced by unicode value. Pasting the actual uniode char between two standard double quotation marks causes Prince to fail - no doubt because the CSS is now no longer UTF-8 or ASCII.
Short of transforming the xml, can anyone offer a suggestion?
TIA
Nick