=================================================================== RCS file: /cvs/mandoc/html.c,v retrieving revision 1.197 retrieving revision 1.199 diff -u -p -r1.197 -r1.199 --- mandoc/html.c 2017/01/19 01:00:14 1.197 +++ mandoc/html.c 2017/01/19 16:59:30 1.199 @@ -1,4 +1,4 @@ -/* $Id: html.c,v 1.197 2017/01/19 01:00:14 schwarze Exp $ */ +/* $Id: html.c,v 1.199 2017/01/19 16:59:30 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons * Copyright (c) 2011-2015, 2017 Ingo Schwarze @@ -75,7 +75,6 @@ static const struct htmldata htmltags[TAG_MAX] = { {"dl", HTML_NLALL | HTML_INDENT}, {"dt", HTML_NLAROUND}, {"dd", HTML_NLAROUND | HTML_INDENT}, - {"blockquote", HTML_NLALL | HTML_INDENT}, {"pre", HTML_NLALL | HTML_NOINDENT}, {"b", 0}, {"i", 0}, @@ -182,7 +181,7 @@ print_gen_head(struct html *h) print_endline(h); print_text(h, "table.head td { width: 33%; }"); print_endline(h); - print_text(h, "div.spacer { margin: 1em 0; }"); + print_text(h, "div.Pp { margin: 1ex 0ex; }"); print_tagq(h, t); if (h->style) @@ -769,7 +768,7 @@ print_paragraph(struct html *h) { struct tag *t; - t = print_otag(h, TAG_DIV, "c", "spacer"); + t = print_otag(h, TAG_DIV, "c", "Pp"); print_tagq(h, t); }