diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-24 20:10:53 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-03-24 20:10:53 +0000 |
commit | 1bd27bfb1ecce0925949a108025f62bf87b5c5f5 (patch) | |
tree | 121babbde4f600edf3a9e716f4d00acf795aa3f6 /man_html.c | |
parent | efcc4d089d85c2b28629f9b05e441837f2c1a4f2 (diff) | |
download | mandoc-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.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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 }, /* . */ }; |