Fix up the HTML generated for envdesc and macrodesc environments.
Make it possible for the user to tell the difference. ;-)
diff --git a/Doc/perl/ltxmarkup.perl b/Doc/perl/ltxmarkup.perl
index 92667e4..07e93ca 100644
--- a/Doc/perl/ltxmarkup.perl
+++ b/Doc/perl/ltxmarkup.perl
@@ -45,7 +45,7 @@
my $params = ltx_process_params(ltx_next_argument());
return "\n<dl class=macrodesc>"
. "\n<dt><b><tt class=macro>\$macro</tt></b>"
- . "\n $params"
+ . "\n $params"
. "\n<dd>"
. $_
. "</dl>";
@@ -56,8 +56,8 @@
my $env = ltx_next_argument();
my $params = ltx_process_params(ltx_next_argument());
return "\n<dl class=envdesc>"
- . "\n<dt><b><tt class=environment>\$env</tt></b>"
- . "\n $params"
+ . "\n<dt><tt>\begin{<b class=environment>$env</b>}</tt>"
+ . "\n $params"
. "\n<dd>"
. $_
. "</dl>";