=================================================================== RCS file: /cvs/mandoc/html.c,v retrieving revision 1.232 retrieving revision 1.233 diff -u -p -r1.232 -r1.233 --- mandoc/html.c 2018/06/10 16:47:15 1.232 +++ mandoc/html.c 2018/06/18 01:49:15 1.233 @@ -1,4 +1,4 @@ -/* $Id: html.c,v 1.232 2018/06/10 16:47:15 schwarze Exp $ */ +/* $OpenBSD: html.c,v 1.233 2018/06/18 01:49:15 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons * Copyright (c) 2011-2015, 2017, 2018 Ingo Schwarze @@ -711,6 +711,9 @@ print_otag(struct html *h, enum htmltag tag, const cha /* Second letter: style name. */ switch (*fmt++) { + case 'h': + attr = "height"; + break; case 'i': attr = "text-indent"; break;