diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-06-23 02:31:40 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2017-06-23 02:31:40 +0000 |
commit | ea8977dc21d1c4884ad8062bda9355ffdaf34105 (patch) | |
tree | 160a544049907ab814854ee9d30794d5e73ca89b /usr.bin/mandoc/html.c | |
parent | 954d7a9ad862b1a430da31a4b63a36ad52c4bef3 (diff) |
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.c')
-rw-r--r-- | usr.bin/mandoc/html.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/html.c b/usr.bin/mandoc/html.c index 58576242ace..169bed91b9e 100644 --- a/usr.bin/mandoc/html.c +++ b/usr.bin/mandoc/html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: html.c,v 1.84 2017/06/14 01:31:19 schwarze Exp $ */ +/* $OpenBSD: html.c,v 1.85 2017/06/23 02:31:39 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2011-2015, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -85,6 +85,7 @@ static const struct htmldata htmltags[TAG_MAX] = { {"math", HTML_NLALL | HTML_INDENT}, {"mrow", 0}, {"mi", 0}, + {"mn", 0}, {"mo", 0}, {"msup", 0}, {"msub", 0}, |