diff options
author | 2017-06-23 02:31:39 +0000 | |
---|---|---|
committer | 2017-06-23 02:31:39 +0000 | |
commit | 72fef9e3679bd642e0a8bb04ffb9b3252b72d47e (patch) | |
tree | 1fd6c3baa4253264793c0542af7e804fb89ec4d0 /usr.bin/mandoc/html.h | |
parent | set the alignment of the per cpu cache structures to CACHELINESIZE. (diff) | |
download | wireguard-openbsd-72fef9e3679bd642e0a8bb04ffb9b3252b72d47e.tar.xz wireguard-openbsd-72fef9e3679bd642e0a8bb04ffb9b3252b72d47e.zip |
Write text boxes as <mi>, <mn>, or <mo> as appropriate,
and write fontstyle or fontweight attributes where required.
Missing features reported by bentley@.
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 b4a4c35cb82..94fd0594f4a 100644 --- a/usr.bin/mandoc/html.h +++ b/usr.bin/mandoc/html.h @@ -1,4 +1,4 @@ -/* $OpenBSD: html.h,v 1.47 2017/05/04 22:07:44 schwarze Exp $ */ +/* $OpenBSD: html.h,v 1.48 2017/06/23 02:31:39 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -51,6 +51,7 @@ enum htmltag { TAG_MATH, TAG_MROW, TAG_MI, + TAG_MN, TAG_MO, TAG_MSUP, TAG_MSUB, |