]> granicus.if.org Git - graphviz/commitdiff
mkcolors.awk: Remove anchor tag from colors
authorMark Hansen <markhansen@google.com>
Thu, 18 Mar 2021 09:31:47 +0000 (20:31 +1100)
committerMark Hansen <markhansen@google.com>
Thu, 18 Mar 2021 09:31:47 +0000 (20:31 +1100)
This prevents styling the color as a link (with underline).

doc/infosrc/mkcolors.awk

index d1b8c2332d1fbc0d117bb01405e9eae10c724e7d..6b11d7eb3487377a3b370b122e213b4241d3a632 100644 (file)
@@ -8,10 +8,10 @@ function putColor (n, r, g, b, v)
 {
   if (length(n) > 4) p = "";
   else p = "&nbsp;&nbsp;&nbsp;";
-  printf ("<td bgcolor=\"#%02x%02x%02x\"><a title=\"#%02x%02x%02x\">",r,g,b,r,g,b); 
+  printf ("<td bgcolor=\"#%02x%02x%02x\" title=\"#%02x%02x%02x\">",r,g,b,r,g,b); 
   if (v < 0.51) printf ("<font color=\"white\">%s%s%s</font>", p,n,p);
   else printf ("%s%s%s", p,n,p);
-  printf ("</a></td>\n");
+  printf ("</td>\n");
 }
 BEGIN {
   colorsPerRow = 5;