aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-05-21 01:11:31 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-05-21 01:11:31 +0000
commit546accec72e5db867d299b5616c26abec3a86c7d (patch)
tree86e8b2b225f2b620f42f329b6b328b290f14418d /html.c
parent559195dcad0532b7eb395988eb0122053d7d12c5 (diff)
downloadmandoc-546accec72e5db867d299b5616c26abec3a86c7d.tar.gz
mandoc-546accec72e5db867d299b5616c26abec3a86c7d.tar.zst
mandoc-546accec72e5db867d299b5616c26abec3a86c7d.zip
Use <span> for .Ms rather than <b>; discussed with John Gardner.
Diffstat (limited to 'html.c')
-rw-r--r--html.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/html.c b/html.c
index 79de70c9..60e88371 100644
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.227 2018/05/21 00:30:23 schwarze Exp $ */
+/* $Id: html.c,v 1.228 2018/05/21 01:11:31 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011-2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -192,6 +192,8 @@ print_gen_head(struct html *h)
print_endline(h);
print_text(h, "span.Pa, span.Ad { font-style: italic; }");
print_endline(h);
+ print_text(h, "span.Ms { font-weight: bold; }");
+ print_endline(h);
print_text(h, "dl.Bl-diag ");
print_byte(h, '>');
print_text(h, " dt { font-weight: bold; }");