diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-02-09 09:52:47 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2011-02-09 09:52:47 +0000 |
commit | 1c56bbdf26bc339ff32709360e5b8de0e220592f (patch) | |
tree | c51b7158555001d2d3e38762ce7dd96a2dd092b0 /mdoc_term.c | |
parent | f6b21f845c28c5c32c6abed3c8a192e58cd35fb0 (diff) | |
download | mandoc-1c56bbdf26bc339ff32709360e5b8de0e220592f.tar.gz |
EQN blocks are now printed in all modes. This is simply a printing of
the concatenated string (in -T[x]html, it gets a SPAN, too).
Diffstat (limited to 'mdoc_term.c')
-rw-r--r-- | mdoc_term.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mdoc_term.c b/mdoc_term.c index 4a467a91..959b8dfa 100644 --- a/mdoc_term.c +++ b/mdoc_term.c @@ -355,6 +355,7 @@ print_mdoc_node(DECL_ARGS) term_word(p, n->string); break; case (MDOC_EQN): + term_word(p, n->eqn->data); break; case (MDOC_TBL): term_tbl(p, n->span); |