summaryrefslogtreecommitdiffstatshomepage
path: root/mdoc_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 /mdoc_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 'mdoc_html.c')
-rw-r--r--mdoc_html.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/mdoc_html.c b/mdoc_html.c
index 00bf4425..51d31e4b 100644
--- a/mdoc_html.c
+++ b/mdoc_html.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_html.c,v 1.173 2011/07/21 11:34:53 kristaps Exp $ */
+/* $Id: mdoc_html.c,v 1.174 2011/07/23 22:57:13 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -407,7 +407,6 @@ print_mdoc_node(MDOC_ARGS)
{
int child;
struct tag *t;
- struct htmlpair tag;
child = 1;
t = h->tags.head;
@@ -434,9 +433,7 @@ print_mdoc_node(MDOC_ARGS)
h->flags |= HTML_NOSPACE;
return;
case (MDOC_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 (MDOC_TBL):
/*