summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorwl <wl>2007-12-30 05:53:39 +0000
committerwl <wl>2007-12-30 05:53:39 +0000
commite40038df8a4870ebc4a7510616fd4a5d4f96c2d1 (patch)
tree4417446643fa873ba46c3d8b30c2cb2fefab0871 /src
parentc227ed591e63f341cf9c204e0fd24ac7e1a2063f (diff)
downloadgroff-e40038df8a4870ebc4a7510616fd4a5d4f96c2d1.tar.gz
* src/devices/grohtml/post-html.cc
(html_printer::writeHeadMetaStyle): Fix CSS output.
Diffstat (limited to 'src')
-rw-r--r--src/devices/grohtml/post-html.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/grohtml/post-html.cpp b/src/devices/grohtml/post-html.cpp
index 6cdfd0cc..d4a4ef13 100644
--- a/src/devices/grohtml/post-html.cpp
+++ b/src/devices/grohtml/post-html.cpp
@@ -5105,11 +5105,11 @@ void html_printer::writeHeadMetaStyle (void)
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);
}