From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id 503f6cdf for ; Mon, 25 Jun 2018 08:01:49 -0500 (EST) Date: Mon, 25 Jun 2018 08:01:49 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: For -man -Thtml, ignore author-specified .HP widths because they X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-Id: Log Message: ----------- For -man -Thtml, ignore author-specified .HP widths because they harm responsive design; use @media-dependent defaults instead. Modified Files: -------------- mandoc: man_html.c mandoc.css Revision Data ------------- Index: man_html.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/man_html.c,v retrieving revision 1.150 retrieving revision 1.151 diff -Lman_html.c -Lman_html.c -u -p -r1.150 -r1.151 --- man_html.c +++ man_html.c @@ -557,24 +557,13 @@ man_IP_pre(MAN_ARGS) static int man_HP_pre(MAN_ARGS) { - struct roffsu sum, sui; - const struct roff_node *np; - if (n->type == ROFFT_HEAD) return 0; - else if (n->type != ROFFT_BLOCK) - return 1; - - np = n->head->child; - - if (np == NULL || !a2width(np, &sum)) - SCALE_HS_INIT(&sum, INDENT); - - sui.unit = sum.unit; - sui.scale = -sum.scale; - print_bvspace(h, n); - print_otag(h, TAG_DIV, "csului", "Pp", &sum, &sui); + if (n->type == ROFFT_BLOCK) { + print_bvspace(h, n); + print_otag(h, TAG_DIV, "c", "HP"); + } return 1; } Index: mandoc.css =================================================================== RCS file: /home/cvs/mandoc/mandoc/mandoc.css,v retrieving revision 1.33 retrieving revision 1.34 diff -Lmandoc.css -Lmandoc.css -u -p -r1.33 -r1.34 --- mandoc.css +++ mandoc.css @@ -153,6 +153,9 @@ table.Bl-compact > tbody > tr > td { .eqn { } .tbl { } +.HP { margin-left: 3.8em; + text-indent: -3.8em; } + /* Semantic markup for command line utilities. */ table.Nm { } @@ -245,4 +248,6 @@ dl.Bl-hang > dd { dl.Bl-tag { margin-left: 2em; } dl.Bl-tag > dt { margin-left: -2em; } +.HP { margin-left: 2em; + text-indent: -2em; } } -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv