diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-23 22:57:13 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-07-23 22:57:13 +0000 |
commit | 7151bb8eeed729397435c0c693efc5546cfda123 (patch) | |
tree | e7cd99eb9b42eff87848d69b74a100ce56ee7332 /man_html.c | |
parent | d01207bfc948fdba1c7d2b8e9b46db9f3a91f3e9 (diff) | |
download | mandoc-7151bb8eeed729397435c0c693efc5546cfda123.tar.gz |
Flip on equation printing for -T[x]html.
Diffstat (limited to 'man_html.c')
-rw-r--r-- | man_html.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -201,7 +201,6 @@ print_man_node(MAN_ARGS) { int child; struct tag *t; - struct htmlpair tag; child = 1; t = h->tags.head; @@ -229,9 +228,7 @@ print_man_node(MAN_ARGS) print_text(h, n->string); return; case (MAN_EQN): - PAIR_CLASS_INIT(&tag, "eqn"); - /*print_otag(h, TAG_SPAN, 1, &tag); - print_text(h, n->eqn->data);*/ + print_eqn(h, n->eqn); break; case (MAN_TBL): /* |