On Sat, 11 Mar 2000, Vlad Harchev wrote:
> Sorry for the late answer, but at least lynx-2.8.3dev14 shows <sup> as ^
(not always, though, but according to some heuristics - see case HTML_SUP
in HTML.c)
> and <sub> as [], i.e. 2<sup>2 will be rendered as 2^2 and H<sub>2</sub>O will
> be rendered as H[2]O.
> If you personally need to alter this to match your requirements, just change
> the following lines in src/HTML.c
> case HTML_SUB:
> HText_appendCharacter(me->text, '[');
> to
> case HTML_SUB:
> HText_appendCharacter(me->text, '_(');
Make that
HText_appendText(me->text, "_(");
instead.
Klaus