diff options
author | 2018-05-21 01:10:06 +0000 | |
---|---|---|
committer | 2018-05-21 01:10:06 +0000 | |
commit | dd6ffdfc34db3eee94f927915c851f92c27c7129 (patch) | |
tree | 8620159f932a7375a3bd4c975ae94ff8e920dcd6 /usr.bin/mandoc/mdoc_html.c | |
parent | Use <span> for .Ad rather than <i>; also suggested by John Gardner. (diff) | |
download | wireguard-openbsd-dd6ffdfc34db3eee94f927915c851f92c27c7129.tar.xz wireguard-openbsd-dd6ffdfc34db3eee94f927915c851f92c27c7129.zip |
Use <span> for .Ms rather than <b>; discussed with John Gardner.
Diffstat (limited to 'usr.bin/mandoc/mdoc_html.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_html.c b/usr.bin/mandoc/mdoc_html.c index 54c5cd92958..072dcb0df64 100644 --- a/usr.bin/mandoc/mdoc_html.c +++ b/usr.bin/mandoc/mdoc_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mdoc_html.c,v 1.177 2018/05/21 00:29:41 schwarze Exp $ */ +/* $OpenBSD: mdoc_html.c,v 1.178 2018/05/21 01:10:06 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014,2015,2016,2017,2018 Ingo Schwarze <schwarze@openbsd.org> @@ -1461,7 +1461,7 @@ mdoc_ms_pre(MDOC_ARGS) if ((id = cond_id(n)) != NULL) print_otag(h, TAG_A, "chR", "permalink", id); - print_otag(h, TAG_B, "cTi", "Ms", id); + print_otag(h, TAG_SPAN, "cTi", "Ms", id); free(id); return 1; } |