]> git.cameronkatri.com Git - mandoc.git/commitdiff
for .Rs, use <cite>
authorIngo Schwarze <schwarze@openbsd.org>
Sun, 5 Feb 2017 19:29:19 +0000 (19:29 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Sun, 5 Feb 2017 19:29:19 +0000 (19:29 +0000)
html.c
html.h
mandoc.css
mdoc_html.c

diff --git a/html.c b/html.c
index bf3d13ce90d0168f8199c8e534331d43783e23c5..b084f1a0a8bb18ae59fcdb0cd3722874393bd100 100644 (file)
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/*     $Id: html.c,v 1.205 2017/02/05 18:15:39 schwarze Exp $ */
+/*     $Id: html.c,v 1.206 2017/02/05 19:29:19 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2011-2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -76,6 +76,7 @@ static        const struct htmldata htmltags[TAG_MAX] = {
        {"dt",          HTML_NLAROUND},
        {"dd",          HTML_NLAROUND | HTML_INDENT},
        {"pre",         HTML_NLALL | HTML_NOINDENT},
+       {"cite",        0},
        {"b",           0},
        {"i",           0},
        {"code",        0},
diff --git a/html.h b/html.h
index afceebad7ca64a52f7e060cb777c8528a4469dbe..95b56be6eb5de4112d000f2cea05931c98adc17f 100644 (file)
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/*     $Id: html.h,v 1.81 2017/02/05 18:15:39 schwarze Exp $ */
+/*     $Id: html.h,v 1.82 2017/02/05 19:29:19 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -41,6 +41,7 @@ enum  htmltag {
        TAG_DT,
        TAG_DD,
        TAG_PRE,
+       TAG_CITE,
        TAG_B,
        TAG_I,
        TAG_CODE,
index e299069d8bc3b9629abc01f757354365f39eda5c..7ea4d9752ff780094939631aaf463c21421cbd4d 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: mandoc.css,v 1.14 2017/01/25 02:14:43 schwarze Exp $ */
+/* $Id: mandoc.css,v 1.15 2017/02/05 19:29:19 schwarze Exp $ */
 /*
  * Standard style sheet for mandoc(1) -Thtml and man.cgi(8).
  */
@@ -108,7 +108,8 @@ table.Bl-column { }
 tr.It-column { }
 td.It-column { margin-top: 1em; }
 
-span.Rs        { }
+cite.Rs {      font-style: normal;
+               font-weight: normal; }
 span.RsA { }
 i.RsB {                font-weight: normal; }
 span.RsC { }
index 9dc829534e3781a949a2188d0ed887594fe01e87..9d6ca1afe63501c2f7449a71c3c35325fe8cacce 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mdoc_html.c,v 1.265 2017/02/05 18:15:39 schwarze Exp $ */
+/*     $Id: mdoc_html.c,v 1.266 2017/02/05 19:29:19 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2014, 2015, 2016, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -1512,7 +1512,7 @@ mdoc_rs_pre(MDOC_ARGS)
        if (n->prev && SEC_SEE_ALSO == n->sec)
                print_paragraph(h);
 
-       print_otag(h, TAG_SPAN, "c", "Rs");
+       print_otag(h, TAG_CITE, "c", "Rs");
        return 1;
 }