Hard-coding a table in which a cell displays Rmax with "max" as a subscript.
TableCell c = new TableCell();
c.Text = "R<sub>max</sub>";
But the result is rendered R< sub >max< /sub > (without the whitespaces - sorry, crappy get-round to stop it from rendering in this post)
Right text, wrong rendering. Also, I'd like to use CSS to control fonts etc.