diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2012-08-12 10:04:09 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2012-08-12 10:04:09 +0000 |
commit | e715af9462476af00b3a238e899359d5a56101ee (patch) | |
tree | af50073db1a0a53f0c406369a62dc124d8a2d7f0 /mdoc_html.c | |
parent | 8248c454db532bea80f1a71af1684b27248040cb (diff) | |
download | mandoc-e715af9462476af00b3a238e899359d5a56101ee.tar.gz |
.Sq should use curly right quotes in HTML output to match its curly
left quotes.
Also, properly reinitialize the styles attribute string buffer for
each column in a table so that the attributes don't accumulate.
Patch from Matthew@ Dempsky, tweaked by me; OpenBSD rev. 1.66.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index acb68891..b6103e94 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -981,8 +981,6 @@ mdoc_bl_pre(MDOC_ARGS) struct roffsu su; char buf[BUFSIZ]; - bufinit(h); - if (MDOC_BODY == n->type) { if (LIST_column == n->norm->Bl.type) print_otag(h, TAG_TBODY, 0, NULL); @@ -1001,6 +999,7 @@ mdoc_bl_pre(MDOC_ARGS) */ for (i = 0; i < (int)n->norm->Bl.ncols; i++) { + bufinit(h); a2width(n->norm->Bl.cols[i], &su); if (i < (int)n->norm->Bl.ncols - 1) bufcat_su(h, "width", &su); @@ -1014,6 +1013,7 @@ mdoc_bl_pre(MDOC_ARGS) } SCALE_VS_INIT(&su, 0); + bufinit(h); bufcat_su(h, "margin-top", &su); bufcat_su(h, "margin-bottom", &su); PAIR_STYLE_INIT(&tag[0], h); @@ -2273,7 +2273,7 @@ mdoc_quote_post(MDOC_ARGS) case (MDOC_So): /* FALLTHROUGH */ case (MDOC_Sq): - print_text(h, "\\(aq"); + print_text(h, "\\(cq"); break; default: abort(); |