diff options
author | 2017-02-05 20:21:17 +0000 | |
---|---|---|
committer | 2017-02-05 20:21:17 +0000 | |
commit | 6bddd96e862e259f958bb9065bb0b9708ce1e7b8 (patch) | |
tree | d6d25faa8b548185e63e47ebe486a696b362490b /usr.bin/mandoc/html.h | |
parent | Since we expect to never do binary compat with other OSes again, (diff) | |
download | wireguard-openbsd-6bddd96e862e259f958bb9065bb0b9708ce1e7b8.tar.xz wireguard-openbsd-6bddd96e862e259f958bb9065bb0b9708ce1e7b8.zip |
mark up .Ar, .Fa, .Va, .Ft, and .Vt with <var> rather than <i>;
suggested by bentley@ long ago, but needed lots of cleanup first
Diffstat (limited to 'usr.bin/mandoc/html.h')
-rw-r--r-- | usr.bin/mandoc/html.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/html.h b/usr.bin/mandoc/html.h index 14c7857c6c0..c2c572fa9a2 100644 --- a/usr.bin/mandoc/html.h +++ b/usr.bin/mandoc/html.h @@ -1,4 +1,4 @@ -/* $OpenBSD: html.h,v 1.44 2017/02/05 19:29:03 schwarze Exp $ */ +/* $OpenBSD: html.h,v 1.45 2017/02/05 20:21:17 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_VAR, TAG_CITE, TAG_B, TAG_I, |