=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/html.c,v retrieving revision 1.18 retrieving revision 1.19 diff -c -r1.18 -r1.19 *** src/usr.bin/mandoc/html.c 2010/12/19 09:22:35 1.18 --- src/usr.bin/mandoc/html.c 2010/12/22 00:33:25 1.19 *************** *** 1,4 **** ! /* $Id: html.c,v 1.18 2010/12/19 09:22:35 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * --- 1,4 ---- ! /* $Id: html.c,v 1.19 2010/12/22 00:33:25 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * *************** *** 66,71 **** --- 66,74 ---- {"blockquote", HTML_CLRLINE}, /* TAG_BLOCKQUOTE */ {"p", HTML_CLRLINE | HTML_NOSTACK | HTML_AUTOCLOSE}, /* TAG_P */ {"pre", HTML_CLRLINE }, /* TAG_PRE */ + {"b", 0 }, /* TAG_B */ + {"i", 0 }, /* TAG_I */ + {"u", 0 }, /* TAG_U */ }; static const char *const htmlfonts[HTMLFONT_MAX] = { *************** *** 75,94 **** }; static const char *const htmlattrs[ATTR_MAX] = { ! "http-equiv", ! "content", ! "name", ! "rel", ! "href", ! "type", ! "media", ! "class", ! "style", ! "width", ! "valign", ! "target", ! "id", ! "summary", }; static void print_spec(struct html *, enum roffdeco, --- 78,96 ---- }; static const char *const htmlattrs[ATTR_MAX] = { ! "http-equiv", /* ATTR_HTTPEQUIV */ ! "content", /* ATTR_CONTENT */ ! "name", /* ATTR_NAME */ ! "rel", /* ATTR_REL */ ! "href", /* ATTR_HREF */ ! "type", /* ATTR_TYPE */ ! "media", /* ATTR_MEDIA */ ! "class", /* ATTR_CLASS */ ! "style", /* ATTR_STYLE */ ! "width", /* ATTR_WIDTH */ ! "id", /* ATTR_ID */ ! "summary", /* ATTR_SUMMARY */ ! "align", /* ATTR_ALIGN */ }; static void print_spec(struct html *, enum roffdeco,