diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-28 20:14:20 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2014-09-28 20:14:20 +0000 |
commit | 7b6089b3a242a9aeedb1da9076ec6ce78ee092a6 (patch) | |
tree | 869bc9407d38355d005147d4c8a060e36a444cc2 /eqn_html.c | |
parent | 5780c02f1388ea6049d16319ef3a305f1859680a (diff) | |
download | mandoc-7b6089b3a242a9aeedb1da9076ec6ce78ee092a6.tar.gz |
Change "to" and "from" commands to use munder, mover, and munderover.
Diffstat (limited to 'eqn_html.c')
-rw-r--r-- | eqn_html.c | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -113,12 +113,14 @@ eqn_box(struct html *p, const struct eqn_box *bp, int next) */ switch (bp->pos) { case (EQNPOS_TO): - /* FALLTHROUGH */ + post = print_otag(p, TAG_MOVER, 0, NULL); + break; case (EQNPOS_SUP): post = print_otag(p, TAG_MSUP, 0, NULL); break; case (EQNPOS_FROM): - /* FALLTHROUGH */ + post = print_otag(p, TAG_MUNDER, 0, NULL); + break; case (EQNPOS_SUB): post = print_otag(p, TAG_MSUB, 0, NULL); break; @@ -126,9 +128,10 @@ eqn_box(struct html *p, const struct eqn_box *bp, int next) post = print_otag(p, TAG_MFRAC, 0, NULL); break; case (EQNPOS_FROMTO): - /* FALLTHROUGH */ + post = print_otag(p, TAG_MUNDEROVER, 0, NULL); + skiptwo = 1; + break; case (EQNPOS_SUBSUP): - /* This requires two elements. */ post = print_otag(p, TAG_MSUBSUP, 0, NULL); skiptwo = 1; break; |