summaryrefslogtreecommitdiffstats
path: root/man_html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-07-21 11:34:53 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-07-21 11:34:53 +0000
commit5777d1fb503dd116e90a489fa562f0a89752541c (patch)
treea6d24495ae536ef90d93b7c33a0fa5cbc73082c7 /man_html.c
parent49de222b7899f01575a6ac00a26bc345864dc826 (diff)
downloadmandoc-5777d1fb503dd116e90a489fa562f0a89752541c.tar.gz
Flip eqn into using parsed nodes. I've temporarily disabled printing
these in the front-ends except for -Ttree, which will display the parsed tree. While here, fix that quoted strings aren't scanned for replacement parts.
Diffstat (limited to 'man_html.c')
-rw-r--r--man_html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/man_html.c b/man_html.c
index 4305d926..f89b1c7a 100644
--- a/man_html.c
+++ b/man_html.c
@@ -230,8 +230,8 @@ print_man_node(MAN_ARGS)
return;
case (MAN_EQN):
PAIR_CLASS_INIT(&tag, "eqn");
- print_otag(h, TAG_SPAN, 1, &tag);
- print_text(h, n->eqn->data);
+ /*print_otag(h, TAG_SPAN, 1, &tag);
+ print_text(h, n->eqn->data);*/
break;
case (MAN_TBL):
/*