Open
Description
This problem has LaTeX code which includes $s''$
.
Rendered in PDF, such text looks correct. In particular, for $s''$
the two single quotes appear as two single quotes. In HTML, however, it gets converted to $s"$
(s followed by a double-quote), which looks wrong (and is wrong).
It appears that the exported HTML contains <span class="tex2jax_process">$s”$</span>
, which is wrong -- so this is an HTML export issue rather than a rendering issue.
Activity
austrin commentedon Feb 1, 2016
A potential workaround you could try: write
$s'{}'$
. Not pretty but I don't think this will be fixed quickly.ghamerly commentedon Feb 1, 2016
Thanks, I used that.