]> git.cameronkatri.com Git - mandoc.git/commitdiff
Use <span> rather than abusing <i> for .Pa;
authorIngo Schwarze <schwarze@openbsd.org>
Mon, 21 May 2018 00:00:37 +0000 (00:00 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Mon, 21 May 2018 00:00:37 +0000 (00:00 +0000)
suggested by John Gardner <gardnerjohng at gmail dot com>.

html.c
mandoc.css
mdoc_html.c

diff --git a/html.c b/html.c
index 33cb67c4781c06a32424370d1b9475a6af1a530b..22f7d6dd6bae5101e7b5a278e1b303e7dcd98d0b 100644 (file)
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/*     $Id: html.c,v 1.225 2018/05/09 00:46:10 schwarze Exp $ */
+/*     $Id: html.c,v 1.226 2018/05/21 00:00:37 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011-2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -190,6 +190,8 @@ print_gen_head(struct html *h)
        print_endline(h);
        print_text(h, "div.Nd, div.Bf, div.Op { display: inline; }");
        print_endline(h);
+       print_text(h, "span.Pa { font-style: italic; }");
+       print_endline(h);
        print_text(h, "dl.Bl-diag ");
        print_byte(h, '>');
        print_text(h, " dt { font-weight: bold; }");
index dbedcb75e0ff0efb65e5b4d37317ee566b99e7ae..469a38fed5d6ffc0b705fc43ded8cb5472eaa0c6 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: mandoc.css,v 1.26 2018/05/09 00:46:10 schwarze Exp $ */
+/* $Id: mandoc.css,v 1.27 2018/05/21 00:00:37 schwarze Exp $ */
 /*
  * Standard style sheet for mandoc(1) -Thtml and man.cgi(8).
  */
@@ -171,7 +171,8 @@ code.Ic {   font-style: normal;
 code.Ev {      font-style: normal;
                font-weight: normal;
                font-family: monospace; }
-i.Pa {         font-weight: normal; }
+span.Pa {      font-style: italic;
+               font-weight: normal; }
 
 /* Semantic markup for function libraries. */
 
index c871181d90302deb5e2f6df62b7d04c2d5d07013..4e72f123aa746010979fb9283dbf3b2471df0008 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_html.c,v 1.300 2018/05/09 00:46:10 schwarze Exp $ */
+/*     $Id: mdoc_html.c,v 1.301 2018/05/21 00:00:37 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -979,7 +979,7 @@ mdoc_bd_pre(MDOC_ARGS)
 static int
 mdoc_pa_pre(MDOC_ARGS)
 {
-       print_otag(h, TAG_I, "cT", "Pa");
+       print_otag(h, TAG_SPAN, "cT", "Pa");
        return 1;
 }