aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit234884d113221f817102fb404dadd44b4e860fb9 (patch)
tree7f21e39f312650081ca8b96e1086caf00c433cde /man_html.c
parent34111478132fd94d00d020f0fc5d1db62e12686a (diff)
downloadmandoc-234884d113221f817102fb404dadd44b4e860fb9.tar.gz
mandoc-234884d113221f817102fb404dadd44b4e860fb9.tar.zst
mandoc-234884d113221f817102fb404dadd44b4e860fb9.zip
Flip on equation printing for -T[x]html.
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/man_html.c b/man_html.c
index fa0b34b3..026364ae 100644
--- a/man_html.c
+++ b/man_html.c
@@ -1,4 +1,4 @@
-/* $Id: man_html.c,v 1.79 2011/07/21 11:34:53 kristaps Exp $ */
+/* $Id: man_html.c,v 1.80 2011/07/23 22:57:13 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -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):
/*