diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-20 13:07:55 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-20 13:07:55 +0000 |
commit | 0ea097c0d8b188de2567ac57aadf0367b0862a73 (patch) | |
tree | a0a635ef97354afdf1822c058191bf2f85ede1b3 /html.c | |
parent | 073891eda234d3d2928f19543a8db60f02cdc36f (diff) | |
download | mandoc-0ea097c0d8b188de2567ac57aadf0367b0862a73.tar.gz |
More use default tags, this time I and U. Also fix a stack overflow
segfault in the last commit.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -71,6 +71,8 @@ static const struct htmldata htmltags[TAG_MAX] = { {"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] = { |