summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc/html.h
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2013-08-08 20:07:24 +0000
committerschwarze <schwarze@openbsd.org>2013-08-08 20:07:24 +0000
commit68941ea94c0db7ab9c71f554f924c89e769d42e1 (patch)
tree03c5f21fbe9a60cc33583750469c58f6b6841857 /usr.bin/mandoc/html.h
parentMost network drivers include netinet/in_var.h, but apparently they (diff)
downloadwireguard-openbsd-68941ea94c0db7ab9c71f554f924c89e769d42e1.tar.xz
wireguard-openbsd-68941ea94c0db7ab9c71f554f924c89e769d42e1.zip
Implement the roff(7) font-escape sequence \f(BI "bold+italic".
This improves the formatting of about 40 base manuals and reduces groff-mandoc formatting differences in base by about 5%.
Diffstat (limited to 'usr.bin/mandoc/html.h')
-rw-r--r--usr.bin/mandoc/html.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/html.h b/usr.bin/mandoc/html.h
index d3a4307c4c7..b796a384fdf 100644
--- a/usr.bin/mandoc/html.h
+++ b/usr.bin/mandoc/html.h
@@ -1,4 +1,4 @@
-/* $Id: html.h,v 1.19 2012/05/28 13:00:51 schwarze Exp $ */
+/* $Id: html.h,v 1.20 2013/08/08 20:07:24 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -75,6 +75,7 @@ enum htmlfont {
HTMLFONT_NONE = 0,
HTMLFONT_BOLD,
HTMLFONT_ITALIC,
+ HTMLFONT_BI,
HTMLFONT_MAX
};