summaryrefslogtreecommitdiffstats
path: root/man_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-03-24 20:10:53 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-03-24 20:10:53 +0000
commit1bd27bfb1ecce0925949a108025f62bf87b5c5f5 (patch)
tree121babbde4f600edf3a9e716f4d00acf795aa3f6 /man_html.c
parentefcc4d089d85c2b28629f9b05e441837f2c1a4f2 (diff)
downloadmandoc-1bd27bfb1ecce0925949a108025f62bf87b5c5f5.tar.gz
Using man_node_delete() instead of man_node_free()/man_node_freelist() and friends (much simpler).
Split blk_imp() into blk_exp() (explicit macros), blk_dotted() (roff macros), and the original. Added de, dei, am, ami, and ig roff macros (for now, these are discarded within the parse).
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/man_html.c b/man_html.c
index 37357cc8..ffd721db 100644
--- a/man_html.c
+++ b/man_html.c
@@ -105,7 +105,13 @@ static const struct htmlman mans[MAN_MAX] = {
{ man_ign_pre, NULL }, /* PD */
{ man_br_pre, NULL }, /* Sp */
{ man_ign_pre, NULL }, /* Vb */
- { NULL, NULL }, /* Vi */
+ { NULL, NULL }, /* Ve */
+ { man_ign_pre, NULL }, /* de */
+ { man_ign_pre, NULL }, /* dei */
+ { man_ign_pre, NULL }, /* am */
+ { man_ign_pre, NULL }, /* ami */
+ { man_ign_pre, NULL }, /* ig */
+ { NULL, NULL }, /* . */
};