From 056a71da76d3ad90109ef2ca7a37fd4f3ea01603 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Sat, 21 Apr 2001 05:48:07 +0000 Subject: [PATCH] The (fairly recent) \textasciicircum is not supported by LaTeX2HTML; add support for it here. --- Doc/perl/python.perl | 1 + 1 file changed, 1 insertion(+) diff --git a/Doc/perl/python.perl b/Doc/perl/python.perl index 4674f9026e..7b58d6a0de 100644 --- a/Doc/perl/python.perl +++ b/Doc/perl/python.perl @@ -86,6 +86,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_textasciicircum{ '^' . @_[0]; } # words typeset in a special way (not in HTML though) -- 2.49.0