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 /mdoc_html.c | |
parent | d01207bfc948fdba1c7d2b8e9b46db9f3a91f3e9 (diff) | |
download | mandoc-7151bb8eeed729397435c0c693efc5546cfda123.tar.gz |
Flip on equation printing for -T[x]html.
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index de167d54..0317a6ad 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -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): /* |