summaryrefslogtreecommitdiffstats
path: root/man_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-07-23 22:57:13 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-07-23 22:57:13 +0000
commit7151bb8eeed729397435c0c693efc5546cfda123 (patch)
treee7cd99eb9b42eff87848d69b74a100ce56ee7332 /man_html.c
parentd01207bfc948fdba1c7d2b8e9b46db9f3a91f3e9 (diff)
downloadmandoc-7151bb8eeed729397435c0c693efc5546cfda123.tar.gz
Flip on equation printing for -T[x]html.
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/man_html.c b/man_html.c
index f89b1c7a..3f7e0573 100644
--- a/man_html.c
+++ b/man_html.c
@@ -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):
/*