Change the way \textasciitilde is implemented so it works more consistently

(dropping tildes into data that still goes through LaTeX-like processing is
a bad idea).
This commit is contained in:
Fred Drake 2002-03-13 02:44:50 +00:00
parent dc0b61d0b1
commit f171ad9d99
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ sub do_cmd_let{
# the older version of LaTeX2HTML we use doesn't support this, but we use it:
sub do_cmd_textasciitilde{ '~' . @_[0]; }
sub do_cmd_textasciitilde{ '~' . @_[0]; }
sub do_cmd_textasciicircum{ '^' . @_[0]; }
sub do_cmd_textbar{ '|' . @_[0]; }
sub do_cmd_textgreater{ '>' . @_[0]; }