Hi,

I tried to use groff's -Thtml; it worked beautifully, except for the fact that post-html.cpp produces

  vertical-align="top"

in the CSS section.  This should probably be changed to

  vertical-align:top


Thanks for ‘listening’ (in case you did),
Bernhard



Index: post-html.cpp
===================================================================
RCS file: /sources/groff/groff/src/devices/grohtml/post-html.cpp,v
retrieving revision 1.40
diff -u -r1.40 post-html.cpp
--- post-html.cpp       25 Sep 2007 15:16:24 -0000      1.40
+++ post-html.cpp       28 Dec 2007 19:01:10 -0000
@@ -5105,11 +5105,11 @@
     fputs("       .right  { text-align: right }\n", stdout);
   }
   fputs("       p       { margin-top: 0; margin-bottom: 0; "
-       "vertical-align=\"top\" }\n", stdout);
+       "vertical-align:top }\n", stdout);
   fputs("       pre     { margin-top: 0; margin-bottom: 0; "
-       "vertical-align=\"top\" }\n", stdout);
+       "vertical-align:top }\n", stdout);
   fputs("       table   { margin-top: 0; margin-bottom: 0; "
-       "vertical-align=\"top\" }\n", stdout);
+       "vertical-align:top }\n", stdout);
   fputs("       h1      { text-align: center }\n", stdout);
   fputs("</style>\n", stdout);
 }



_______________________________________________
bug-groff mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-groff

Reply via email to