commit bf7b36b5cf9c40bdd794fc6fce2cb8bf9d4c7dd7
Author: Dan Gildea <dgildea>
Date:   Mon Oct 1 17:17:53 2018 -0400

    missing quote mark

diff --git a/latex2html.pin b/latex2html.pin
index bd07f38..69a2bdf 100755
--- a/latex2html.pin
+++ b/latex2html.pin
@@ -7405,19 +7405,19 @@ IMG.TOP     { vertical-align:top; }
 IMG.BOTTOM  { vertical-align:baseline; }
 
 DL.COMPACT > dt { float:left; padding-right: 1em; }
-BODY { width:90%; max-width:50em; margin:auto; text-align:justify; }
+BODY { width:95%; max-width:50em; margin:auto; }
 
 /* implement both fixed-size and relative sizes */
-SMALL.XTINY		{ font-size : xx-small }
-SMALL.TINY		{ font-size : x-small  }
-SMALL.SCRIPTSIZE	{ font-size : smaller  }
-SMALL.FOOTNOTESIZE	{ font-size : small    }
-SMALL.SMALL		{  }
-BIG.LARGE		{  }
-BIG.XLARGE		{ font-size : large    }
-BIG.XXLARGE		{ font-size : x-large  }
-BIG.HUGE		{ font-size : larger   }
-BIG.XHUGE		{ font-size : xx-large }
+.XTINY		{ font-size : xx-small }
+.TINY		{ font-size : x-small  }
+.SCRIPTSIZE	{ font-size : smaller  }
+.FOOTNOTESIZE	{ font-size : small    }
+.SMALL		{  }
+.LARGE		{  }
+.XLARGE		{ font-size : large    }
+.XXLARGE		{ font-size : x-large  }
+.HUGE		{ font-size : larger   }
+.XHUGE		{ font-size : xx-large }
 
 /* heading styles */
 H1		{  }
@@ -8728,7 +8728,7 @@ sub add_real_idx {
 	    $count++;
 	}
 	while ($count > $level) {
-	    $index .= "\n<DL COMPACT>";
+	    $index .= "\n<DL class=\"COMPACT\">";
 	    $level++;
 	}
 	while ($count < $level) {
@@ -8738,7 +8738,7 @@ sub add_real_idx {
 	foreach $term (@current[$count .. $#current-1]) {
 	    # need to "step in" a little
 #	    $index .= "<DT>" . $term . "\n<DL COMPACT>";
-	    $index .= "\n<DT>$sidx_style" . $term . "$eidx_style\n<DD><DL COMPACT>";
+	    $index .= "\n<DT>$sidx_style" . $term . "$eidx_style\n<DD><DL class=\"COMPACT\">";
 	    $level++;
 	}
 	$str = $current[$#current];
@@ -8759,7 +8759,7 @@ sub add_real_idx {
     $index =~ s/(<A [^>]*>)(<D(T|D)>)/$2$1/g;
     
 #    s/$idx_mark/<DL COMPACT>$index<\/DL>/o;
-    s/$idx_mark/$preindex\n<DL COMPACT>\n$index<\/DL>\n/o;
+    s/$idx_mark/$preindex\n<DL class=\"COMPACT\">\n$index<\/DL>\n/o;
 }
 
 sub keysort {
@@ -11531,7 +11531,7 @@ sub do_env_enumerate {
 	$_ = join("\\item ", $preitems, @items);
 
 	# Original, but $enum_result
-	$enum_result = &do_env_description($_, " COMPACT");
+	$enum_result = &do_env_description($_, " class=\"COMPACT\"");
     } else {
 	$enum_result = &list_helper($_, "OL$enum_type", '', '');
     }
@@ -11600,7 +11600,7 @@ sub do_env_list {
 
 sub do_env_trivlist {
     local($_) = @_;
-    local($compact,$item_sep,$pre_items) = ' COMPACT';
+    local($compact,$item_sep,$pre_items) = ' class="COMPACT"';
     &protect_useritems($_);
 
     # assume no styles initially for this list
@@ -11729,7 +11729,7 @@ sub list_helper {
 
     # This deals with \item[xxx] ...
     if ($tag =~ /DL/) {
-	$compact = ' COMPACT';
+	$compact = ' class="COMPACT"';
 	# include \label anchors in the <DT> part
 	# and  $pre_item  tags in the <DD> part:
 	if ($labels && $lengths) { 
diff --git a/versions/html5_0.pl b/versions/html5_0.pl
index 7f23d2f..6648d4a 100644
--- a/versions/html5_0.pl
+++ b/versions/html5_0.pl
@@ -13,18 +13,18 @@ $eqno_class = ' CLASS="eqno"';
 
 # Note that htmlx.x.pl prior modules are *NOT*already loaded.
 
-$declarations{'tiny'} = '<SMALL CLASS="TINY"></SMALL>';
-$declarations{'Tiny'} = '<SMALL CLASS="XTINY"></SMALL>';
-$declarations{'scriptsize'} = '<SMALL CLASS="SCRIPTSIZE"></SMALL>';
-$declarations{'small'} = '<SMALL CLASS="SMALL"></SMALL>';
-$declarations{'Small'} = '<SMALL CLASS="FOOTNOTESIZE"></SMALL>';
-$declarations{'SMALL'} = '<SMALL CLASS="SCRIPTSIZE"></SMALL>';
-$declarations{'footnotesize'} = '<SMALL CLASS="FOOTNOTESIZE"></SMALL>';
-$declarations{'large'} = '<BIG CLASS="LARGE"></BIG>';
-$declarations{'Large'} = '<BIG CLASS="XLARGE"></BIG>';
-$declarations{'LARGE'} = '<BIG CLASS="XXLARGE"></BIG>';
-$declarations{'huge'} = '<BIG CLASS="HUGE"></BIG>';
-$declarations{'Huge'} = '<BIG CLASS="XHUGE"></BIG>';
+$declarations{'tiny'} = '<SPAN CLASS="TINY"></SPAN>';
+$declarations{'Tiny'} = '<SPAN CLASS="XTINY"></SPAN>';
+$declarations{'scriptsize'} = '<SPAN CLASS="SCRIPTSIZE"></SPAN>';
+$declarations{'small'} = '<SPAN CLASS="SPAN"></SPAN>';
+$declarations{'Small'} = '<SPAN CLASS="FOOTNOTESIZE"></SPAN>';
+$declarations{'SMALL'} = '<SPAN CLASS="SCRIPTSIZE"></SPAN>';
+$declarations{'footnotesize'} = '<SPAN CLASS="FOOTNOTESIZE"></SPAN>';
+$declarations{'large'} = '<SPAN CLASS="LARGE"></SPAN>';
+$declarations{'Large'} = '<SPAN CLASS="XLARGE"></SPAN>';
+$declarations{'LARGE'} = '<SPAN CLASS="XXLARGE"></SPAN>';
+$declarations{'huge'} = '<SPAN CLASS="HUGE"></SPAN>';
+$declarations{'Huge'} = '<SPAN CLASS="XHUGE"></SPAN>';
 
 $declarations{'sl'} = '<I CLASS="slanted"></I>';
 $declarations{'slshape'} = '<I CLASS="slanted"></I>';
@@ -1025,7 +1025,7 @@ sub process_tabular {
 #	$cap_anchors = '';
     } else { 
 	$return = join('', "<TABLE$env_id$lang class=\"PAD $border\" style=\""
-		, $tab_width, ">");
+		, $tab_width, "\">");
     }
     $env_id = '';
 
