Commit 0a676c84 authored by Fred Drake's avatar Fred Drake

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).
parent e8fa7548
...@@ -85,7 +85,7 @@ sub do_cmd_let{ ...@@ -85,7 +85,7 @@ sub do_cmd_let{
# the older version of LaTeX2HTML we use doesn't support this, but we use it: # 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_textasciicircum{ '^' . @_[0]; }
sub do_cmd_textbar{ '|' . @_[0]; } sub do_cmd_textbar{ '|' . @_[0]; }
sub do_cmd_textgreater{ '>' . @_[0]; } sub do_cmd_textgreater{ '>' . @_[0]; }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment