[BACK]Return to mdoc_html.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/mdoc_html.c, Revision 1.219

1.219   ! schwarze    1: /*     $Id: mdoc_html.c,v 1.218 2014/12/23 13:48:57 schwarze Exp $ */
1.1       kristaps    2: /*
1.208     schwarze    3:  * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
1.219   ! schwarze    4:  * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
1.1       kristaps    5:  *
                      6:  * Permission to use, copy, modify, and distribute this software for any
                      7:  * purpose with or without fee is hereby granted, provided that the above
                      8:  * copyright notice and this permission notice appear in all copies.
                      9:  *
                     10:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     11:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     12:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     13:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     14:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     15:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     16:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
                     17:  */
1.52      kristaps   18: #include "config.h"
                     19:
1.1       kristaps   20: #include <sys/types.h>
                     21:
                     22: #include <assert.h>
                     23: #include <ctype.h>
                     24: #include <stdio.h>
                     25: #include <stdlib.h>
                     26: #include <string.h>
                     27: #include <unistd.h>
                     28:
1.189     schwarze   29: #include "mandoc_aux.h"
1.215     schwarze   30: #include "mdoc.h"
1.23      kristaps   31: #include "out.h"
1.1       kristaps   32: #include "html.h"
1.29      kristaps   33: #include "main.h"
1.1       kristaps   34:
                     35: #define        INDENT           5
                     36:
1.184     schwarze   37: #define        MDOC_ARGS         const struct mdoc_meta *meta, \
1.1       kristaps   38:                          const struct mdoc_node *n, \
                     39:                          struct html *h
                     40:
1.52      kristaps   41: #ifndef MIN
                     42: #define        MIN(a,b)        ((/*CONSTCOND*/(a)<(b))?(a):(b))
                     43: #endif
                     44:
1.1       kristaps   45: struct htmlmdoc {
                     46:        int             (*pre)(MDOC_ARGS);
                     47:        void            (*post)(MDOC_ARGS);
                     48: };
                     49:
                     50: static void              print_mdoc(MDOC_ARGS);
                     51: static void              print_mdoc_head(MDOC_ARGS);
                     52: static void              print_mdoc_node(MDOC_ARGS);
                     53: static void              print_mdoc_nodelist(MDOC_ARGS);
1.188     schwarze   54: static void              synopsis_pre(struct html *,
1.78      kristaps   55:                                const struct mdoc_node *);
1.1       kristaps   56:
1.23      kristaps   57: static void              a2width(const char *, struct roffsu *);
1.27      kristaps   58:
1.1       kristaps   59: static void              mdoc_root_post(MDOC_ARGS);
                     60: static int               mdoc_root_pre(MDOC_ARGS);
                     61:
1.10      kristaps   62: static void              mdoc__x_post(MDOC_ARGS);
                     63: static int               mdoc__x_pre(MDOC_ARGS);
1.1       kristaps   64: static int               mdoc_ad_pre(MDOC_ARGS);
                     65: static int               mdoc_an_pre(MDOC_ARGS);
1.5       kristaps   66: static int               mdoc_ap_pre(MDOC_ARGS);
1.1       kristaps   67: static int               mdoc_ar_pre(MDOC_ARGS);
                     68: static int               mdoc_bd_pre(MDOC_ARGS);
1.5       kristaps   69: static int               mdoc_bf_pre(MDOC_ARGS);
1.94      kristaps   70: static void              mdoc_bk_post(MDOC_ARGS);
                     71: static int               mdoc_bk_pre(MDOC_ARGS);
1.1       kristaps   72: static int               mdoc_bl_pre(MDOC_ARGS);
1.6       kristaps   73: static int               mdoc_bt_pre(MDOC_ARGS);
1.4       kristaps   74: static int               mdoc_bx_pre(MDOC_ARGS);
1.1       kristaps   75: static int               mdoc_cd_pre(MDOC_ARGS);
                     76: static int               mdoc_d1_pre(MDOC_ARGS);
                     77: static int               mdoc_dv_pre(MDOC_ARGS);
                     78: static int               mdoc_fa_pre(MDOC_ARGS);
                     79: static int               mdoc_fd_pre(MDOC_ARGS);
                     80: static int               mdoc_fl_pre(MDOC_ARGS);
                     81: static int               mdoc_fn_pre(MDOC_ARGS);
                     82: static int               mdoc_ft_pre(MDOC_ARGS);
                     83: static int               mdoc_em_pre(MDOC_ARGS);
                     84: static int               mdoc_er_pre(MDOC_ARGS);
                     85: static int               mdoc_ev_pre(MDOC_ARGS);
                     86: static int               mdoc_ex_pre(MDOC_ARGS);
1.4       kristaps   87: static void              mdoc_fo_post(MDOC_ARGS);
                     88: static int               mdoc_fo_pre(MDOC_ARGS);
                     89: static int               mdoc_ic_pre(MDOC_ARGS);
1.110     schwarze   90: static int               mdoc_igndelim_pre(MDOC_ARGS);
1.4       kristaps   91: static int               mdoc_in_pre(MDOC_ARGS);
1.1       kristaps   92: static int               mdoc_it_pre(MDOC_ARGS);
1.6       kristaps   93: static int               mdoc_lb_pre(MDOC_ARGS);
                     94: static int               mdoc_li_pre(MDOC_ARGS);
1.2       kristaps   95: static int               mdoc_lk_pre(MDOC_ARGS);
                     96: static int               mdoc_mt_pre(MDOC_ARGS);
1.5       kristaps   97: static int               mdoc_ms_pre(MDOC_ARGS);
1.1       kristaps   98: static int               mdoc_nd_pre(MDOC_ARGS);
                     99: static int               mdoc_nm_pre(MDOC_ARGS);
1.210     schwarze  100: static int               mdoc_no_pre(MDOC_ARGS);
1.1       kristaps  101: static int               mdoc_ns_pre(MDOC_ARGS);
                    102: static int               mdoc_pa_pre(MDOC_ARGS);
1.5       kristaps  103: static void              mdoc_pf_post(MDOC_ARGS);
1.120     kristaps  104: static int               mdoc_pp_pre(MDOC_ARGS);
1.107     kristaps  105: static void              mdoc_quote_post(MDOC_ARGS);
                    106: static int               mdoc_quote_pre(MDOC_ARGS);
1.5       kristaps  107: static int               mdoc_rs_pre(MDOC_ARGS);
1.4       kristaps  108: static int               mdoc_rv_pre(MDOC_ARGS);
1.1       kristaps  109: static int               mdoc_sh_pre(MDOC_ARGS);
1.191     schwarze  110: static int               mdoc_skip_pre(MDOC_ARGS);
1.99      kristaps  111: static int               mdoc_sm_pre(MDOC_ARGS);
1.1       kristaps  112: static int               mdoc_sp_pre(MDOC_ARGS);
                    113: static int               mdoc_ss_pre(MDOC_ARGS);
                    114: static int               mdoc_sx_pre(MDOC_ARGS);
1.6       kristaps  115: static int               mdoc_sy_pre(MDOC_ARGS);
                    116: static int               mdoc_ud_pre(MDOC_ARGS);
1.4       kristaps  117: static int               mdoc_va_pre(MDOC_ARGS);
1.1       kristaps  118: static int               mdoc_vt_pre(MDOC_ARGS);
                    119: static int               mdoc_xr_pre(MDOC_ARGS);
                    120: static int               mdoc_xx_pre(MDOC_ARGS);
                    121:
                    122: static const struct htmlmdoc mdocs[MDOC_MAX] = {
1.5       kristaps  123:        {mdoc_ap_pre, NULL}, /* Ap */
1.1       kristaps  124:        {NULL, NULL}, /* Dd */
                    125:        {NULL, NULL}, /* Dt */
                    126:        {NULL, NULL}, /* Os */
                    127:        {mdoc_sh_pre, NULL }, /* Sh */
1.188     schwarze  128:        {mdoc_ss_pre, NULL }, /* Ss */
                    129:        {mdoc_pp_pre, NULL}, /* Pp */
1.1       kristaps  130:        {mdoc_d1_pre, NULL}, /* D1 */
                    131:        {mdoc_d1_pre, NULL}, /* Dl */
                    132:        {mdoc_bd_pre, NULL}, /* Bd */
                    133:        {NULL, NULL}, /* Ed */
1.115     kristaps  134:        {mdoc_bl_pre, NULL}, /* Bl */
1.1       kristaps  135:        {NULL, NULL}, /* El */
                    136:        {mdoc_it_pre, NULL}, /* It */
1.188     schwarze  137:        {mdoc_ad_pre, NULL}, /* Ad */
1.1       kristaps  138:        {mdoc_an_pre, NULL}, /* An */
                    139:        {mdoc_ar_pre, NULL}, /* Ar */
                    140:        {mdoc_cd_pre, NULL}, /* Cd */
                    141:        {mdoc_fl_pre, NULL}, /* Cm */
1.188     schwarze  142:        {mdoc_dv_pre, NULL}, /* Dv */
                    143:        {mdoc_er_pre, NULL}, /* Er */
                    144:        {mdoc_ev_pre, NULL}, /* Ev */
1.1       kristaps  145:        {mdoc_ex_pre, NULL}, /* Ex */
1.188     schwarze  146:        {mdoc_fa_pre, NULL}, /* Fa */
                    147:        {mdoc_fd_pre, NULL}, /* Fd */
1.1       kristaps  148:        {mdoc_fl_pre, NULL}, /* Fl */
1.188     schwarze  149:        {mdoc_fn_pre, NULL}, /* Fn */
                    150:        {mdoc_ft_pre, NULL}, /* Ft */
                    151:        {mdoc_ic_pre, NULL}, /* Ic */
                    152:        {mdoc_in_pre, NULL}, /* In */
1.6       kristaps  153:        {mdoc_li_pre, NULL}, /* Li */
1.188     schwarze  154:        {mdoc_nd_pre, NULL}, /* Nd */
                    155:        {mdoc_nm_pre, NULL}, /* Nm */
1.107     kristaps  156:        {mdoc_quote_pre, mdoc_quote_post}, /* Op */
1.191     schwarze  157:        {mdoc_ft_pre, NULL}, /* Ot */
1.1       kristaps  158:        {mdoc_pa_pre, NULL}, /* Pa */
1.4       kristaps  159:        {mdoc_rv_pre, NULL}, /* Rv */
1.188     schwarze  160:        {NULL, NULL}, /* St */
1.4       kristaps  161:        {mdoc_va_pre, NULL}, /* Va */
1.188     schwarze  162:        {mdoc_vt_pre, NULL}, /* Vt */
1.1       kristaps  163:        {mdoc_xr_pre, NULL}, /* Xr */
1.10      kristaps  164:        {mdoc__x_pre, mdoc__x_post}, /* %A */
                    165:        {mdoc__x_pre, mdoc__x_post}, /* %B */
                    166:        {mdoc__x_pre, mdoc__x_post}, /* %D */
                    167:        {mdoc__x_pre, mdoc__x_post}, /* %I */
                    168:        {mdoc__x_pre, mdoc__x_post}, /* %J */
                    169:        {mdoc__x_pre, mdoc__x_post}, /* %N */
                    170:        {mdoc__x_pre, mdoc__x_post}, /* %O */
                    171:        {mdoc__x_pre, mdoc__x_post}, /* %P */
                    172:        {mdoc__x_pre, mdoc__x_post}, /* %R */
                    173:        {mdoc__x_pre, mdoc__x_post}, /* %T */
                    174:        {mdoc__x_pre, mdoc__x_post}, /* %V */
1.1       kristaps  175:        {NULL, NULL}, /* Ac */
1.107     kristaps  176:        {mdoc_quote_pre, mdoc_quote_post}, /* Ao */
                    177:        {mdoc_quote_pre, mdoc_quote_post}, /* Aq */
1.1       kristaps  178:        {NULL, NULL}, /* At */
                    179:        {NULL, NULL}, /* Bc */
1.188     schwarze  180:        {mdoc_bf_pre, NULL}, /* Bf */
1.107     kristaps  181:        {mdoc_quote_pre, mdoc_quote_post}, /* Bo */
                    182:        {mdoc_quote_pre, mdoc_quote_post}, /* Bq */
1.1       kristaps  183:        {mdoc_xx_pre, NULL}, /* Bsx */
1.4       kristaps  184:        {mdoc_bx_pre, NULL}, /* Bx */
1.212     schwarze  185:        {mdoc_skip_pre, NULL}, /* Db */
1.1       kristaps  186:        {NULL, NULL}, /* Dc */
1.107     kristaps  187:        {mdoc_quote_pre, mdoc_quote_post}, /* Do */
                    188:        {mdoc_quote_pre, mdoc_quote_post}, /* Dq */
1.55      kristaps  189:        {NULL, NULL}, /* Ec */ /* FIXME: no space */
1.1       kristaps  190:        {NULL, NULL}, /* Ef */
1.188     schwarze  191:        {mdoc_em_pre, NULL}, /* Em */
1.182     schwarze  192:        {mdoc_quote_pre, mdoc_quote_post}, /* Eo */
1.1       kristaps  193:        {mdoc_xx_pre, NULL}, /* Fx */
1.98      kristaps  194:        {mdoc_ms_pre, NULL}, /* Ms */
1.210     schwarze  195:        {mdoc_no_pre, NULL}, /* No */
1.1       kristaps  196:        {mdoc_ns_pre, NULL}, /* Ns */
                    197:        {mdoc_xx_pre, NULL}, /* Nx */
                    198:        {mdoc_xx_pre, NULL}, /* Ox */
                    199:        {NULL, NULL}, /* Pc */
1.110     schwarze  200:        {mdoc_igndelim_pre, mdoc_pf_post}, /* Pf */
1.107     kristaps  201:        {mdoc_quote_pre, mdoc_quote_post}, /* Po */
                    202:        {mdoc_quote_pre, mdoc_quote_post}, /* Pq */
1.1       kristaps  203:        {NULL, NULL}, /* Qc */
1.107     kristaps  204:        {mdoc_quote_pre, mdoc_quote_post}, /* Ql */
                    205:        {mdoc_quote_pre, mdoc_quote_post}, /* Qo */
                    206:        {mdoc_quote_pre, mdoc_quote_post}, /* Qq */
1.1       kristaps  207:        {NULL, NULL}, /* Re */
1.5       kristaps  208:        {mdoc_rs_pre, NULL}, /* Rs */
1.1       kristaps  209:        {NULL, NULL}, /* Sc */
1.107     kristaps  210:        {mdoc_quote_pre, mdoc_quote_post}, /* So */
                    211:        {mdoc_quote_pre, mdoc_quote_post}, /* Sq */
1.188     schwarze  212:        {mdoc_sm_pre, NULL}, /* Sm */
1.1       kristaps  213:        {mdoc_sx_pre, NULL}, /* Sx */
1.6       kristaps  214:        {mdoc_sy_pre, NULL}, /* Sy */
1.1       kristaps  215:        {NULL, NULL}, /* Tn */
                    216:        {mdoc_xx_pre, NULL}, /* Ux */
                    217:        {NULL, NULL}, /* Xc */
                    218:        {NULL, NULL}, /* Xo */
1.188     schwarze  219:        {mdoc_fo_pre, mdoc_fo_post}, /* Fo */
                    220:        {NULL, NULL}, /* Fc */
1.107     kristaps  221:        {mdoc_quote_pre, mdoc_quote_post}, /* Oo */
1.1       kristaps  222:        {NULL, NULL}, /* Oc */
1.94      kristaps  223:        {mdoc_bk_pre, mdoc_bk_post}, /* Bk */
1.1       kristaps  224:        {NULL, NULL}, /* Ek */
1.6       kristaps  225:        {mdoc_bt_pre, NULL}, /* Bt */
1.1       kristaps  226:        {NULL, NULL}, /* Hf */
1.191     schwarze  227:        {mdoc_em_pre, NULL}, /* Fr */
1.6       kristaps  228:        {mdoc_ud_pre, NULL}, /* Ud */
                    229:        {mdoc_lb_pre, NULL}, /* Lb */
1.188     schwarze  230:        {mdoc_pp_pre, NULL}, /* Lp */
                    231:        {mdoc_lk_pre, NULL}, /* Lk */
                    232:        {mdoc_mt_pre, NULL}, /* Mt */
                    233:        {mdoc_quote_pre, mdoc_quote_post}, /* Brq */
                    234:        {mdoc_quote_pre, mdoc_quote_post}, /* Bro */
                    235:        {NULL, NULL}, /* Brc */
                    236:        {mdoc__x_pre, mdoc__x_post}, /* %C */
1.191     schwarze  237:        {mdoc_skip_pre, NULL}, /* Es */
                    238:        {mdoc_quote_pre, mdoc_quote_post}, /* En */
1.188     schwarze  239:        {mdoc_xx_pre, NULL}, /* Dx */
                    240:        {mdoc__x_pre, mdoc__x_post}, /* %Q */
1.1       kristaps  241:        {mdoc_sp_pre, NULL}, /* br */
1.188     schwarze  242:        {mdoc_sp_pre, NULL}, /* sp */
                    243:        {mdoc__x_pre, mdoc__x_post}, /* %U */
                    244:        {NULL, NULL}, /* Ta */
1.191     schwarze  245:        {mdoc_skip_pre, NULL}, /* ll */
1.1       kristaps  246: };
                    247:
1.115     kristaps  248: static const char * const lists[LIST_MAX] = {
                    249:        NULL,
1.116     kristaps  250:        "list-bul",
                    251:        "list-col",
1.115     kristaps  252:        "list-dash",
                    253:        "list-diag",
                    254:        "list-enum",
                    255:        "list-hang",
1.116     kristaps  256:        "list-hyph",
1.115     kristaps  257:        "list-inset",
                    258:        "list-item",
                    259:        "list-ohang",
                    260:        "list-tag"
                    261: };
1.1       kristaps  262:
1.188     schwarze  263:
1.1       kristaps  264: void
1.184     schwarze  265: html_mdoc(void *arg, const struct mdoc *mdoc)
1.1       kristaps  266: {
                    267:
1.184     schwarze  268:        print_mdoc(mdoc_meta(mdoc), mdoc_node(mdoc),
1.188     schwarze  269:            (struct html *)arg);
1.179     kristaps  270:        putchar('\n');
1.1       kristaps  271: }
                    272:
1.23      kristaps  273: /*
                    274:  * Calculate the scaling unit passed in a `-width' argument.  This uses
                    275:  * either a native scaling unit (e.g., 1i, 2m) or the string length of
                    276:  * the value.
                    277:  */
                    278: static void
                    279: a2width(const char *p, struct roffsu *su)
1.1       kristaps  280: {
                    281:
1.217     schwarze  282:        if (a2roffsu(p, su, SCALE_MAX) < 2) {
1.209     schwarze  283:                su->unit = SCALE_EN;
1.166     kristaps  284:                su->scale = html_strlen(p);
1.218     schwarze  285:        } else if (su->scale < 0.0)
                    286:                su->scale = 0.0;
1.1       kristaps  287: }
                    288:
1.23      kristaps  289: /*
1.78      kristaps  290:  * See the same function in mdoc_term.c for documentation.
                    291:  */
                    292: static void
                    293: synopsis_pre(struct html *h, const struct mdoc_node *n)
                    294: {
                    295:
1.87      kristaps  296:        if (NULL == n->prev || ! (MDOC_SYNPRETTY & n->flags))
1.78      kristaps  297:                return;
                    298:
1.188     schwarze  299:        if (n->prev->tok == n->tok &&
                    300:            MDOC_Fo != n->tok &&
                    301:            MDOC_Ft != n->tok &&
                    302:            MDOC_Fn != n->tok) {
1.125     kristaps  303:                print_otag(h, TAG_BR, 0, NULL);
1.78      kristaps  304:                return;
                    305:        }
                    306:
                    307:        switch (n->prev->tok) {
1.188     schwarze  308:        case MDOC_Fd:
1.78      kristaps  309:                /* FALLTHROUGH */
1.188     schwarze  310:        case MDOC_Fn:
1.78      kristaps  311:                /* FALLTHROUGH */
1.188     schwarze  312:        case MDOC_Fo:
1.78      kristaps  313:                /* FALLTHROUGH */
1.188     schwarze  314:        case MDOC_In:
1.78      kristaps  315:                /* FALLTHROUGH */
1.188     schwarze  316:        case MDOC_Vt:
1.206     kristaps  317:                print_paragraph(h);
1.78      kristaps  318:                break;
1.188     schwarze  319:        case MDOC_Ft:
1.78      kristaps  320:                if (MDOC_Fn != n->tok && MDOC_Fo != n->tok) {
1.206     kristaps  321:                        print_paragraph(h);
1.78      kristaps  322:                        break;
                    323:                }
                    324:                /* FALLTHROUGH */
                    325:        default:
1.125     kristaps  326:                print_otag(h, TAG_BR, 0, NULL);
1.78      kristaps  327:                break;
                    328:        }
                    329: }
                    330:
1.1       kristaps  331: static void
                    332: print_mdoc(MDOC_ARGS)
                    333: {
1.179     kristaps  334:        struct tag      *t, *tt;
                    335:        struct htmlpair  tag;
                    336:
                    337:        PAIR_CLASS_INIT(&tag, "mandoc");
1.1       kristaps  338:
1.179     kristaps  339:        if ( ! (HTML_FRAGMENT & h->oflags)) {
                    340:                print_gen_decls(h);
                    341:                t = print_otag(h, TAG_HTML, 0, NULL);
                    342:                tt = print_otag(h, TAG_HEAD, 0, NULL);
1.184     schwarze  343:                print_mdoc_head(meta, n, h);
1.179     kristaps  344:                print_tagq(h, tt);
                    345:                print_otag(h, TAG_BODY, 0, NULL);
                    346:                print_otag(h, TAG_DIV, 1, &tag);
1.188     schwarze  347:        } else
1.179     kristaps  348:                t = print_otag(h, TAG_DIV, 1, &tag);
1.1       kristaps  349:
1.184     schwarze  350:        print_mdoc_nodelist(meta, n, h);
1.1       kristaps  351:        print_tagq(h, t);
                    352: }
                    353:
                    354: static void
                    355: print_mdoc_head(MDOC_ARGS)
                    356: {
                    357:
                    358:        print_gen_head(h);
1.20      kristaps  359:        bufinit(h);
1.195     schwarze  360:        bufcat(h, meta->title);
                    361:        if (meta->msec)
                    362:                bufcat_fmt(h, "(%s)", meta->msec);
1.184     schwarze  363:        if (meta->arch)
                    364:                bufcat_fmt(h, " (%s)", meta->arch);
1.1       kristaps  365:
                    366:        print_otag(h, TAG_TITLE, 0, NULL);
1.20      kristaps  367:        print_text(h, h->buf);
1.1       kristaps  368: }
                    369:
                    370: static void
                    371: print_mdoc_nodelist(MDOC_ARGS)
                    372: {
                    373:
1.184     schwarze  374:        print_mdoc_node(meta, n, h);
1.1       kristaps  375:        if (n->next)
1.184     schwarze  376:                print_mdoc_nodelist(meta, n->next, h);
1.1       kristaps  377: }
                    378:
                    379: static void
                    380: print_mdoc_node(MDOC_ARGS)
                    381: {
                    382:        int              child;
                    383:        struct tag      *t;
                    384:
                    385:        child = 1;
1.39      kristaps  386:        t = h->tags.head;
1.1       kristaps  387:
                    388:        switch (n->type) {
1.188     schwarze  389:        case MDOC_ROOT:
1.184     schwarze  390:                child = mdoc_root_pre(meta, n, h);
1.1       kristaps  391:                break;
1.188     schwarze  392:        case MDOC_TEXT:
1.144     kristaps  393:                /* No tables in this mode... */
                    394:                assert(NULL == h->tblt);
1.149     kristaps  395:
                    396:                /*
                    397:                 * Make sure that if we're in a literal mode already
                    398:                 * (i.e., within a <PRE>) don't print the newline.
                    399:                 */
1.143     kristaps  400:                if (' ' == *n->string && MDOC_LINE & n->flags)
1.149     kristaps  401:                        if ( ! (HTML_LITERAL & h->flags))
                    402:                                print_otag(h, TAG_BR, 0, NULL);
1.155     kristaps  403:                if (MDOC_DELIMC & n->flags)
                    404:                        h->flags |= HTML_NOSPACE;
1.1       kristaps  405:                print_text(h, n->string);
1.155     kristaps  406:                if (MDOC_DELIMO & n->flags)
                    407:                        h->flags |= HTML_NOSPACE;
1.151     kristaps  408:                return;
1.188     schwarze  409:        case MDOC_EQN:
1.174     kristaps  410:                print_eqn(h, n->eqn);
1.153     kristaps  411:                break;
1.188     schwarze  412:        case MDOC_TBL:
1.144     kristaps  413:                /*
                    414:                 * This will take care of initialising all of the table
                    415:                 * state data for the first table, then tearing it down
                    416:                 * for the last one.
                    417:                 */
1.141     kristaps  418:                print_tbl(h, n->span);
1.144     kristaps  419:                return;
1.1       kristaps  420:        default:
1.144     kristaps  421:                /*
                    422:                 * Close out the current table, if it's open, and unset
                    423:                 * the "meta" table state.  This will be reopened on the
                    424:                 * next table element.
                    425:                 */
1.213     schwarze  426:                if (h->tblt != NULL) {
1.144     kristaps  427:                        print_tblclose(h);
                    428:                        t = h->tags.head;
                    429:                }
1.213     schwarze  430:                assert(h->tblt == NULL);
                    431:                if (mdocs[n->tok].pre && (n->end == ENDBODY_NOT || n->child))
1.184     schwarze  432:                        child = (*mdocs[n->tok].pre)(meta, n, h);
1.1       kristaps  433:                break;
                    434:        }
                    435:
1.186     schwarze  436:        if (HTML_KEEP & h->flags) {
1.185     schwarze  437:                if (n->prev ? (n->prev->lastline != n->line) :
                    438:                    (n->parent && n->parent->line != n->line)) {
1.94      kristaps  439:                        h->flags &= ~HTML_KEEP;
                    440:                        h->flags |= HTML_PREKEEP;
                    441:                }
                    442:        }
                    443:
1.1       kristaps  444:        if (child && n->child)
1.184     schwarze  445:                print_mdoc_nodelist(meta, n->child, h);
1.1       kristaps  446:
                    447:        print_stagq(h, t);
                    448:
                    449:        switch (n->type) {
1.188     schwarze  450:        case MDOC_ROOT:
1.184     schwarze  451:                mdoc_root_post(meta, n, h);
1.153     kristaps  452:                break;
1.188     schwarze  453:        case MDOC_EQN:
1.1       kristaps  454:                break;
                    455:        default:
1.213     schwarze  456:                if ( ! mdocs[n->tok].post || n->flags & MDOC_ENDED)
                    457:                        break;
                    458:                (*mdocs[n->tok].post)(meta, n, h);
                    459:                if (n->end != ENDBODY_NOT)
                    460:                        n->pending->flags |= MDOC_ENDED;
                    461:                if (n->end == ENDBODY_NOSPACE)
                    462:                        h->flags |= HTML_NOSPACE;
1.1       kristaps  463:                break;
                    464:        }
                    465: }
                    466:
                    467: static void
                    468: mdoc_root_post(MDOC_ARGS)
                    469: {
1.204     kristaps  470:        struct htmlpair  tag;
1.1       kristaps  471:        struct tag      *t, *tt;
                    472:
1.204     kristaps  473:        PAIR_CLASS_INIT(&tag, "foot");
                    474:        t = print_otag(h, TAG_TABLE, 1, &tag);
1.132     kristaps  475:
1.181     schwarze  476:        print_otag(h, TAG_TBODY, 0, NULL);
1.40      kristaps  477:
1.1       kristaps  478:        tt = print_otag(h, TAG_TR, 0, NULL);
                    479:
1.204     kristaps  480:        PAIR_CLASS_INIT(&tag, "foot-date");
                    481:        print_otag(h, TAG_TD, 1, &tag);
1.184     schwarze  482:        print_text(h, meta->date);
1.1       kristaps  483:        print_stagq(h, tt);
                    484:
1.204     kristaps  485:        PAIR_CLASS_INIT(&tag, "foot-os");
                    486:        print_otag(h, TAG_TD, 1, &tag);
1.184     schwarze  487:        print_text(h, meta->os);
1.1       kristaps  488:        print_tagq(h, t);
                    489: }
                    490:
                    491: static int
                    492: mdoc_root_pre(MDOC_ARGS)
                    493: {
1.204     kristaps  494:        struct htmlpair  tag;
1.1       kristaps  495:        struct tag      *t, *tt;
1.190     schwarze  496:        char            *volume, *title;
1.1       kristaps  497:
1.190     schwarze  498:        if (NULL == meta->arch)
                    499:                volume = mandoc_strdup(meta->vol);
                    500:        else
                    501:                mandoc_asprintf(&volume, "%s (%s)",
                    502:                    meta->vol, meta->arch);
1.1       kristaps  503:
1.195     schwarze  504:        if (NULL == meta->msec)
                    505:                title = mandoc_strdup(meta->title);
                    506:        else
                    507:                mandoc_asprintf(&title, "%s(%s)",
                    508:                    meta->title, meta->msec);
1.23      kristaps  509:
1.204     kristaps  510:        PAIR_CLASS_INIT(&tag, "head");
                    511:        t = print_otag(h, TAG_TABLE, 1, &tag);
1.132     kristaps  512:
                    513:        print_otag(h, TAG_TBODY, 0, NULL);
1.40      kristaps  514:
1.1       kristaps  515:        tt = print_otag(h, TAG_TR, 0, NULL);
                    516:
1.204     kristaps  517:        PAIR_CLASS_INIT(&tag, "head-ltitle");
                    518:        print_otag(h, TAG_TD, 1, &tag);
1.2       kristaps  519:        print_text(h, title);
1.1       kristaps  520:        print_stagq(h, tt);
                    521:
1.204     kristaps  522:        PAIR_CLASS_INIT(&tag, "head-vol");
                    523:        print_otag(h, TAG_TD, 1, &tag);
1.190     schwarze  524:        print_text(h, volume);
1.1       kristaps  525:        print_stagq(h, tt);
                    526:
1.204     kristaps  527:        PAIR_CLASS_INIT(&tag, "head-rtitle");
                    528:        print_otag(h, TAG_TD, 1, &tag);
1.2       kristaps  529:        print_text(h, title);
1.1       kristaps  530:        print_tagq(h, t);
1.189     schwarze  531:
                    532:        free(title);
1.190     schwarze  533:        free(volume);
1.1       kristaps  534:        return(1);
                    535: }
                    536:
                    537: static int
                    538: mdoc_sh_pre(MDOC_ARGS)
                    539: {
1.123     kristaps  540:        struct htmlpair  tag;
                    541:
1.200     schwarze  542:        switch (n->type) {
                    543:        case MDOC_BLOCK:
1.123     kristaps  544:                PAIR_CLASS_INIT(&tag, "section");
                    545:                print_otag(h, TAG_DIV, 1, &tag);
1.1       kristaps  546:                return(1);
1.200     schwarze  547:        case MDOC_BODY:
                    548:                if (n->sec == SEC_AUTHORS)
                    549:                        h->flags &= ~(HTML_SPLIT|HTML_NOSPLIT);
1.1       kristaps  550:                return(1);
1.200     schwarze  551:        default:
                    552:                break;
                    553:        }
1.1       kristaps  554:
1.168     kristaps  555:        bufinit(h);
1.172     kristaps  556:        bufcat(h, "x");
1.175     kristaps  557:
                    558:        for (n = n->child; n && MDOC_TEXT == n->type; ) {
1.168     kristaps  559:                bufcat_id(h, n->string);
1.175     kristaps  560:                if (NULL != (n = n->next))
1.168     kristaps  561:                        bufcat_id(h, " ");
1.21      kristaps  562:        }
                    563:
1.175     kristaps  564:        if (NULL == n) {
                    565:                PAIR_ID_INIT(&tag, h->buf);
                    566:                print_otag(h, TAG_H1, 1, &tag);
                    567:        } else
                    568:                print_otag(h, TAG_H1, 0, NULL);
                    569:
1.1       kristaps  570:        return(1);
                    571: }
                    572:
                    573: static int
                    574: mdoc_ss_pre(MDOC_ARGS)
                    575: {
1.123     kristaps  576:        struct htmlpair  tag;
1.1       kristaps  577:
1.123     kristaps  578:        if (MDOC_BLOCK == n->type) {
                    579:                PAIR_CLASS_INIT(&tag, "subsection");
                    580:                print_otag(h, TAG_DIV, 1, &tag);
1.1       kristaps  581:                return(1);
1.123     kristaps  582:        } else if (MDOC_BODY == n->type)
1.1       kristaps  583:                return(1);
1.23      kristaps  584:
1.168     kristaps  585:        bufinit(h);
1.172     kristaps  586:        bufcat(h, "x");
1.175     kristaps  587:
                    588:        for (n = n->child; n && MDOC_TEXT == n->type; ) {
1.168     kristaps  589:                bufcat_id(h, n->string);
1.175     kristaps  590:                if (NULL != (n = n->next))
1.168     kristaps  591:                        bufcat_id(h, " ");
1.21      kristaps  592:        }
                    593:
1.175     kristaps  594:        if (NULL == n) {
                    595:                PAIR_ID_INIT(&tag, h->buf);
                    596:                print_otag(h, TAG_H2, 1, &tag);
                    597:        } else
                    598:                print_otag(h, TAG_H2, 0, NULL);
                    599:
1.1       kristaps  600:        return(1);
                    601: }
                    602:
                    603: static int
                    604: mdoc_fl_pre(MDOC_ARGS)
                    605: {
                    606:        struct htmlpair  tag;
                    607:
1.51      kristaps  608:        PAIR_CLASS_INIT(&tag, "flag");
1.132     kristaps  609:        print_otag(h, TAG_B, 1, &tag);
1.51      kristaps  610:
1.50      kristaps  611:        /* `Cm' has no leading hyphen. */
                    612:
1.51      kristaps  613:        if (MDOC_Cm == n->tok)
1.50      kristaps  614:                return(1);
                    615:
                    616:        print_text(h, "\\-");
                    617:
1.199     schwarze  618:        if ( ! (n->nchild == 0 &&
                    619:            (n->next == NULL ||
                    620:             n->next->type == MDOC_TEXT ||
                    621:             n->next->flags & MDOC_LINE)))
1.1       kristaps  622:                h->flags |= HTML_NOSPACE;
1.50      kristaps  623:
1.1       kristaps  624:        return(1);
                    625: }
                    626:
                    627: static int
                    628: mdoc_nd_pre(MDOC_ARGS)
                    629: {
                    630:        struct htmlpair  tag;
                    631:
                    632:        if (MDOC_BODY != n->type)
                    633:                return(1);
                    634:
1.24      kristaps  635:        /* XXX: this tag in theory can contain block elements. */
                    636:
1.1       kristaps  637:        print_text(h, "\\(em");
1.124     kristaps  638:        PAIR_CLASS_INIT(&tag, "desc");
1.1       kristaps  639:        print_otag(h, TAG_SPAN, 1, &tag);
                    640:        return(1);
                    641: }
                    642:
                    643: static int
                    644: mdoc_nm_pre(MDOC_ARGS)
                    645: {
1.91      kristaps  646:        struct htmlpair  tag;
                    647:        struct roffsu    su;
1.166     kristaps  648:        int              len;
1.91      kristaps  649:
1.124     kristaps  650:        switch (n->type) {
1.188     schwarze  651:        case MDOC_ELEM:
1.91      kristaps  652:                synopsis_pre(h, n);
                    653:                PAIR_CLASS_INIT(&tag, "name");
1.132     kristaps  654:                print_otag(h, TAG_B, 1, &tag);
1.184     schwarze  655:                if (NULL == n->child && meta->name)
                    656:                        print_text(h, meta->name);
1.124     kristaps  657:                return(1);
1.188     schwarze  658:        case MDOC_HEAD:
1.124     kristaps  659:                print_otag(h, TAG_TD, 0, NULL);
1.184     schwarze  660:                if (NULL == n->child && meta->name)
                    661:                        print_text(h, meta->name);
1.124     kristaps  662:                return(1);
1.188     schwarze  663:        case MDOC_BODY:
1.124     kristaps  664:                print_otag(h, TAG_TD, 0, NULL);
                    665:                return(1);
                    666:        default:
                    667:                break;
                    668:        }
1.91      kristaps  669:
1.124     kristaps  670:        synopsis_pre(h, n);
                    671:        PAIR_CLASS_INIT(&tag, "synopsis");
                    672:        print_otag(h, TAG_TABLE, 1, &tag);
                    673:
                    674:        for (len = 0, n = n->child; n; n = n->next)
                    675:                if (MDOC_TEXT == n->type)
1.166     kristaps  676:                        len += html_strlen(n->string);
1.91      kristaps  677:
1.184     schwarze  678:        if (0 == len && meta->name)
                    679:                len = html_strlen(meta->name);
1.1       kristaps  680:
1.194     schwarze  681:        SCALE_HS_INIT(&su, len);
1.168     kristaps  682:        bufinit(h);
1.165     kristaps  683:        bufcat_su(h, "width", &su);
1.124     kristaps  684:        PAIR_STYLE_INIT(&tag, h);
                    685:        print_otag(h, TAG_COL, 1, &tag);
                    686:        print_otag(h, TAG_COL, 0, NULL);
                    687:        print_otag(h, TAG_TBODY, 0, NULL);
                    688:        print_otag(h, TAG_TR, 0, NULL);
1.1       kristaps  689:        return(1);
                    690: }
                    691:
                    692: static int
                    693: mdoc_xr_pre(MDOC_ARGS)
                    694: {
1.157     kristaps  695:        struct htmlpair  tag[2];
1.56      kristaps  696:
                    697:        if (NULL == n->child)
                    698:                return(0);
1.17      kristaps  699:
1.23      kristaps  700:        PAIR_CLASS_INIT(&tag[0], "link-man");
1.1       kristaps  701:
1.17      kristaps  702:        if (h->base_man) {
1.188     schwarze  703:                buffmt_man(h, n->child->string,
                    704:                    n->child->next ?
                    705:                    n->child->next->string : NULL);
1.57      kristaps  706:                PAIR_HREF_INIT(&tag[1], h->buf);
1.23      kristaps  707:                print_otag(h, TAG_A, 2, tag);
                    708:        } else
                    709:                print_otag(h, TAG_A, 1, tag);
1.1       kristaps  710:
1.157     kristaps  711:        n = n->child;
                    712:        print_text(h, n->string);
1.16      kristaps  713:
1.157     kristaps  714:        if (NULL == (n = n->next))
1.1       kristaps  715:                return(0);
                    716:
                    717:        h->flags |= HTML_NOSPACE;
                    718:        print_text(h, "(");
                    719:        h->flags |= HTML_NOSPACE;
1.157     kristaps  720:        print_text(h, n->string);
1.1       kristaps  721:        h->flags |= HTML_NOSPACE;
                    722:        print_text(h, ")");
                    723:        return(0);
                    724: }
                    725:
                    726: static int
                    727: mdoc_ns_pre(MDOC_ARGS)
                    728: {
                    729:
1.150     kristaps  730:        if ( ! (MDOC_LINE & n->flags))
                    731:                h->flags |= HTML_NOSPACE;
1.1       kristaps  732:        return(1);
                    733: }
                    734:
                    735: static int
                    736: mdoc_ar_pre(MDOC_ARGS)
                    737: {
                    738:        struct htmlpair tag;
                    739:
1.23      kristaps  740:        PAIR_CLASS_INIT(&tag, "arg");
1.133     kristaps  741:        print_otag(h, TAG_I, 1, &tag);
1.1       kristaps  742:        return(1);
                    743: }
                    744:
                    745: static int
                    746: mdoc_xx_pre(MDOC_ARGS)
                    747: {
                    748:        const char      *pp;
                    749:        struct htmlpair  tag;
1.152     schwarze  750:        int              flags;
1.1       kristaps  751:
                    752:        switch (n->tok) {
1.188     schwarze  753:        case MDOC_Bsx:
1.112     schwarze  754:                pp = "BSD/OS";
1.1       kristaps  755:                break;
1.188     schwarze  756:        case MDOC_Dx:
1.45      kristaps  757:                pp = "DragonFly";
1.1       kristaps  758:                break;
1.188     schwarze  759:        case MDOC_Fx:
1.1       kristaps  760:                pp = "FreeBSD";
                    761:                break;
1.188     schwarze  762:        case MDOC_Nx:
1.1       kristaps  763:                pp = "NetBSD";
                    764:                break;
1.188     schwarze  765:        case MDOC_Ox:
1.1       kristaps  766:                pp = "OpenBSD";
                    767:                break;
1.188     schwarze  768:        case MDOC_Ux:
1.1       kristaps  769:                pp = "UNIX";
                    770:                break;
                    771:        default:
                    772:                return(1);
                    773:        }
                    774:
1.23      kristaps  775:        PAIR_CLASS_INIT(&tag, "unix");
1.1       kristaps  776:        print_otag(h, TAG_SPAN, 1, &tag);
1.148     kristaps  777:
1.1       kristaps  778:        print_text(h, pp);
1.148     kristaps  779:        if (n->child) {
1.152     schwarze  780:                flags = h->flags;
1.148     kristaps  781:                h->flags |= HTML_KEEP;
                    782:                print_text(h, n->child->string);
1.152     schwarze  783:                h->flags = flags;
1.148     kristaps  784:        }
                    785:        return(0);
1.1       kristaps  786: }
                    787:
                    788: static int
1.4       kristaps  789: mdoc_bx_pre(MDOC_ARGS)
                    790: {
1.146     kristaps  791:        struct htmlpair  tag;
1.4       kristaps  792:
1.23      kristaps  793:        PAIR_CLASS_INIT(&tag, "unix");
1.4       kristaps  794:        print_otag(h, TAG_SPAN, 1, &tag);
                    795:
1.145     kristaps  796:        if (NULL != (n = n->child)) {
                    797:                print_text(h, n->string);
                    798:                h->flags |= HTML_NOSPACE;
                    799:                print_text(h, "BSD");
                    800:        } else {
                    801:                print_text(h, "BSD");
                    802:                return(0);
                    803:        }
1.4       kristaps  804:
1.145     kristaps  805:        if (NULL != (n = n->next)) {
                    806:                h->flags |= HTML_NOSPACE;
1.147     kristaps  807:                print_text(h, "-");
1.4       kristaps  808:                h->flags |= HTML_NOSPACE;
1.147     kristaps  809:                print_text(h, n->string);
1.145     kristaps  810:        }
1.4       kristaps  811:
                    812:        return(0);
                    813: }
                    814:
                    815: static int
1.115     kristaps  816: mdoc_it_pre(MDOC_ARGS)
1.1       kristaps  817: {
1.115     kristaps  818:        struct roffsu    su;
                    819:        enum mdoc_list   type;
1.116     kristaps  820:        struct htmlpair  tag[2];
1.115     kristaps  821:        const struct mdoc_node *bl;
                    822:
                    823:        bl = n->parent;
                    824:        while (bl && MDOC_Bl != bl->tok)
                    825:                bl = bl->parent;
1.23      kristaps  826:
1.115     kristaps  827:        assert(bl);
1.23      kristaps  828:
1.137     kristaps  829:        type = bl->norm->Bl.type;
1.24      kristaps  830:
1.116     kristaps  831:        assert(lists[type]);
                    832:        PAIR_CLASS_INIT(&tag[0], lists[type]);
1.1       kristaps  833:
1.168     kristaps  834:        bufinit(h);
                    835:
1.115     kristaps  836:        if (MDOC_HEAD == n->type) {
                    837:                switch (type) {
1.188     schwarze  838:                case LIST_bullet:
1.115     kristaps  839:                        /* FALLTHROUGH */
1.188     schwarze  840:                case LIST_dash:
1.115     kristaps  841:                        /* FALLTHROUGH */
1.188     schwarze  842:                case LIST_item:
1.115     kristaps  843:                        /* FALLTHROUGH */
1.188     schwarze  844:                case LIST_hyphen:
1.115     kristaps  845:                        /* FALLTHROUGH */
1.188     schwarze  846:                case LIST_enum:
1.115     kristaps  847:                        return(0);
1.188     schwarze  848:                case LIST_diag:
1.115     kristaps  849:                        /* FALLTHROUGH */
1.188     schwarze  850:                case LIST_hang:
1.115     kristaps  851:                        /* FALLTHROUGH */
1.188     schwarze  852:                case LIST_inset:
1.115     kristaps  853:                        /* FALLTHROUGH */
1.188     schwarze  854:                case LIST_ohang:
1.115     kristaps  855:                        /* FALLTHROUGH */
1.188     schwarze  856:                case LIST_tag:
1.137     kristaps  857:                        SCALE_VS_INIT(&su, ! bl->norm->Bl.comp);
1.122     kristaps  858:                        bufcat_su(h, "margin-top", &su);
                    859:                        PAIR_STYLE_INIT(&tag[1], h);
1.116     kristaps  860:                        print_otag(h, TAG_DT, 2, tag);
1.134     kristaps  861:                        if (LIST_diag != type)
                    862:                                break;
                    863:                        PAIR_CLASS_INIT(&tag[0], "diag");
                    864:                        print_otag(h, TAG_B, 1, tag);
1.115     kristaps  865:                        break;
1.188     schwarze  866:                case LIST_column:
1.115     kristaps  867:                        break;
                    868:                default:
                    869:                        break;
                    870:                }
                    871:        } else if (MDOC_BODY == n->type) {
                    872:                switch (type) {
1.188     schwarze  873:                case LIST_bullet:
1.115     kristaps  874:                        /* FALLTHROUGH */
1.188     schwarze  875:                case LIST_hyphen:
1.115     kristaps  876:                        /* FALLTHROUGH */
1.188     schwarze  877:                case LIST_dash:
1.115     kristaps  878:                        /* FALLTHROUGH */
1.188     schwarze  879:                case LIST_enum:
1.115     kristaps  880:                        /* FALLTHROUGH */
1.188     schwarze  881:                case LIST_item:
1.137     kristaps  882:                        SCALE_VS_INIT(&su, ! bl->norm->Bl.comp);
1.122     kristaps  883:                        bufcat_su(h, "margin-top", &su);
                    884:                        PAIR_STYLE_INIT(&tag[1], h);
1.116     kristaps  885:                        print_otag(h, TAG_LI, 2, tag);
1.115     kristaps  886:                        break;
1.188     schwarze  887:                case LIST_diag:
1.115     kristaps  888:                        /* FALLTHROUGH */
1.188     schwarze  889:                case LIST_hang:
1.115     kristaps  890:                        /* FALLTHROUGH */
1.188     schwarze  891:                case LIST_inset:
1.115     kristaps  892:                        /* FALLTHROUGH */
1.188     schwarze  893:                case LIST_ohang:
1.115     kristaps  894:                        /* FALLTHROUGH */
1.188     schwarze  895:                case LIST_tag:
1.137     kristaps  896:                        if (NULL == bl->norm->Bl.width) {
1.122     kristaps  897:                                print_otag(h, TAG_DD, 1, tag);
                    898:                                break;
                    899:                        }
1.137     kristaps  900:                        a2width(bl->norm->Bl.width, &su);
1.122     kristaps  901:                        bufcat_su(h, "margin-left", &su);
                    902:                        PAIR_STYLE_INIT(&tag[1], h);
                    903:                        print_otag(h, TAG_DD, 2, tag);
1.115     kristaps  904:                        break;
1.188     schwarze  905:                case LIST_column:
1.137     kristaps  906:                        SCALE_VS_INIT(&su, ! bl->norm->Bl.comp);
1.122     kristaps  907:                        bufcat_su(h, "margin-top", &su);
                    908:                        PAIR_STYLE_INIT(&tag[1], h);
1.116     kristaps  909:                        print_otag(h, TAG_TD, 2, tag);
1.115     kristaps  910:                        break;
                    911:                default:
                    912:                        break;
                    913:                }
                    914:        } else {
                    915:                switch (type) {
1.188     schwarze  916:                case LIST_column:
1.116     kristaps  917:                        print_otag(h, TAG_TR, 1, tag);
1.115     kristaps  918:                        break;
                    919:                default:
1.23      kristaps  920:                        break;
1.115     kristaps  921:                }
1.1       kristaps  922:        }
                    923:
                    924:        return(1);
                    925: }
                    926:
                    927: static int
1.115     kristaps  928: mdoc_bl_pre(MDOC_ARGS)
1.1       kristaps  929: {
1.142     kristaps  930:        int              i;
1.119     kristaps  931:        struct htmlpair  tag[3];
1.23      kristaps  932:        struct roffsu    su;
1.134     kristaps  933:        char             buf[BUFSIZ];
1.23      kristaps  934:
1.115     kristaps  935:        if (MDOC_BODY == n->type) {
1.137     kristaps  936:                if (LIST_column == n->norm->Bl.type)
1.115     kristaps  937:                        print_otag(h, TAG_TBODY, 0, NULL);
                    938:                return(1);
1.23      kristaps  939:        }
1.1       kristaps  940:
1.115     kristaps  941:        if (MDOC_HEAD == n->type) {
1.137     kristaps  942:                if (LIST_column != n->norm->Bl.type)
1.115     kristaps  943:                        return(0);
                    944:
                    945:                /*
                    946:                 * For each column, print out the <COL> tag with our
                    947:                 * suggested width.  The last column gets min-width, as
                    948:                 * in terminal mode it auto-sizes to the width of the
                    949:                 * screen and we want to preserve that behaviour.
                    950:                 */
1.1       kristaps  951:
1.142     kristaps  952:                for (i = 0; i < (int)n->norm->Bl.ncols; i++) {
1.183     schwarze  953:                        bufinit(h);
1.137     kristaps  954:                        a2width(n->norm->Bl.cols[i], &su);
1.142     kristaps  955:                        if (i < (int)n->norm->Bl.ncols - 1)
1.115     kristaps  956:                                bufcat_su(h, "width", &su);
                    957:                        else
                    958:                                bufcat_su(h, "min-width", &su);
                    959:                        PAIR_STYLE_INIT(&tag[0], h);
                    960:                        print_otag(h, TAG_COL, 1, tag);
                    961:                }
1.1       kristaps  962:
                    963:                return(0);
                    964:        }
                    965:
1.119     kristaps  966:        SCALE_VS_INIT(&su, 0);
1.183     schwarze  967:        bufinit(h);
1.119     kristaps  968:        bufcat_su(h, "margin-top", &su);
                    969:        bufcat_su(h, "margin-bottom", &su);
                    970:        PAIR_STYLE_INIT(&tag[0], h);
                    971:
1.137     kristaps  972:        assert(lists[n->norm->Bl.type]);
1.190     schwarze  973:        (void)strlcpy(buf, "list ", BUFSIZ);
                    974:        (void)strlcat(buf, lists[n->norm->Bl.type], BUFSIZ);
1.134     kristaps  975:        PAIR_INIT(&tag[1], ATTR_CLASS, buf);
1.1       kristaps  976:
1.115     kristaps  977:        /* Set the block's left-hand margin. */
1.1       kristaps  978:
1.137     kristaps  979:        if (n->norm->Bl.offs) {
1.209     schwarze  980:                a2width(n->norm->Bl.offs, &su);
1.115     kristaps  981:                bufcat_su(h, "margin-left", &su);
                    982:        }
1.1       kristaps  983:
1.137     kristaps  984:        switch (n->norm->Bl.type) {
1.188     schwarze  985:        case LIST_bullet:
1.1       kristaps  986:                /* FALLTHROUGH */
1.188     schwarze  987:        case LIST_dash:
1.1       kristaps  988:                /* FALLTHROUGH */
1.188     schwarze  989:        case LIST_hyphen:
1.1       kristaps  990:                /* FALLTHROUGH */
1.188     schwarze  991:        case LIST_item:
1.134     kristaps  992:                print_otag(h, TAG_UL, 2, tag);
1.1       kristaps  993:                break;
1.188     schwarze  994:        case LIST_enum:
1.134     kristaps  995:                print_otag(h, TAG_OL, 2, tag);
1.23      kristaps  996:                break;
1.188     schwarze  997:        case LIST_diag:
1.115     kristaps  998:                /* FALLTHROUGH */
1.188     schwarze  999:        case LIST_hang:
1.46      kristaps 1000:                /* FALLTHROUGH */
1.188     schwarze 1001:        case LIST_inset:
1.33      kristaps 1002:                /* FALLTHROUGH */
1.188     schwarze 1003:        case LIST_ohang:
1.1       kristaps 1004:                /* FALLTHROUGH */
1.188     schwarze 1005:        case LIST_tag:
1.134     kristaps 1006:                print_otag(h, TAG_DL, 2, tag);
1.115     kristaps 1007:                break;
1.188     schwarze 1008:        case LIST_column:
1.134     kristaps 1009:                print_otag(h, TAG_TABLE, 2, tag);
1.1       kristaps 1010:                break;
                   1011:        default:
1.115     kristaps 1012:                abort();
                   1013:                /* NOTREACHED */
1.1       kristaps 1014:        }
                   1015:
                   1016:        return(1);
                   1017: }
                   1018:
                   1019: static int
                   1020: mdoc_ex_pre(MDOC_ARGS)
                   1021: {
1.160     kristaps 1022:        struct tag      *t;
                   1023:        struct htmlpair  tag;
                   1024:        int              nchild;
1.1       kristaps 1025:
1.127     kristaps 1026:        if (n->prev)
                   1027:                print_otag(h, TAG_BR, 0, NULL);
                   1028:
1.23      kristaps 1029:        PAIR_CLASS_INIT(&tag, "utility");
                   1030:
1.1       kristaps 1031:        print_text(h, "The");
1.160     kristaps 1032:
                   1033:        nchild = n->nchild;
                   1034:        for (n = n->child; n; n = n->next) {
                   1035:                assert(MDOC_TEXT == n->type);
                   1036:
1.132     kristaps 1037:                t = print_otag(h, TAG_B, 1, &tag);
1.160     kristaps 1038:                print_text(h, n->string);
1.1       kristaps 1039:                print_tagq(h, t);
                   1040:
1.160     kristaps 1041:                if (nchild > 2 && n->next) {
                   1042:                        h->flags |= HTML_NOSPACE;
                   1043:                        print_text(h, ",");
                   1044:                }
1.1       kristaps 1045:
1.160     kristaps 1046:                if (n->next && NULL == n->next->next)
                   1047:                        print_text(h, "and");
1.1       kristaps 1048:        }
                   1049:
1.160     kristaps 1050:        if (nchild > 1)
1.193     schwarze 1051:                print_text(h, "utilities exit\\~0");
1.1       kristaps 1052:        else
1.193     schwarze 1053:                print_text(h, "utility exits\\~0");
1.1       kristaps 1054:
1.193     schwarze 1055:        print_text(h, "on success, and\\~>0 if an error occurs.");
1.1       kristaps 1056:        return(0);
                   1057: }
                   1058:
                   1059: static int
                   1060: mdoc_em_pre(MDOC_ARGS)
                   1061: {
1.198     schwarze 1062:        struct htmlpair tag;
1.1       kristaps 1063:
1.198     schwarze 1064:        PAIR_CLASS_INIT(&tag, "emph");
                   1065:        print_otag(h, TAG_SPAN, 1, &tag);
1.1       kristaps 1066:        return(1);
                   1067: }
                   1068:
                   1069: static int
                   1070: mdoc_d1_pre(MDOC_ARGS)
                   1071: {
1.23      kristaps 1072:        struct htmlpair  tag[2];
                   1073:        struct roffsu    su;
1.1       kristaps 1074:
                   1075:        if (MDOC_BLOCK != n->type)
                   1076:                return(1);
                   1077:
1.118     kristaps 1078:        SCALE_VS_INIT(&su, 0);
1.168     kristaps 1079:        bufinit(h);
1.118     kristaps 1080:        bufcat_su(h, "margin-top", &su);
                   1081:        bufcat_su(h, "margin-bottom", &su);
                   1082:        PAIR_STYLE_INIT(&tag[0], h);
1.120     kristaps 1083:        print_otag(h, TAG_BLOCKQUOTE, 1, tag);
                   1084:
                   1085:        /* BLOCKQUOTE needs a block body. */
1.118     kristaps 1086:
1.136     kristaps 1087:        PAIR_CLASS_INIT(&tag[0], "display");
                   1088:        print_otag(h, TAG_DIV, 1, tag);
                   1089:
1.135     kristaps 1090:        if (MDOC_Dl == n->tok) {
1.136     kristaps 1091:                PAIR_CLASS_INIT(&tag[0], "lit");
1.135     kristaps 1092:                print_otag(h, TAG_CODE, 1, tag);
1.188     schwarze 1093:        }
1.35      kristaps 1094:
1.1       kristaps 1095:        return(1);
                   1096: }
                   1097:
                   1098: static int
                   1099: mdoc_sx_pre(MDOC_ARGS)
                   1100: {
1.157     kristaps 1101:        struct htmlpair  tag[2];
1.1       kristaps 1102:
1.168     kristaps 1103:        bufinit(h);
1.169     kristaps 1104:        bufcat(h, "#x");
1.175     kristaps 1105:
                   1106:        for (n = n->child; n; ) {
1.168     kristaps 1107:                bufcat_id(h, n->string);
1.175     kristaps 1108:                if (NULL != (n = n->next))
1.168     kristaps 1109:                        bufcat_id(h, " ");
1.1       kristaps 1110:        }
                   1111:
1.23      kristaps 1112:        PAIR_CLASS_INIT(&tag[0], "link-sec");
1.168     kristaps 1113:        PAIR_HREF_INIT(&tag[1], h->buf);
1.1       kristaps 1114:
1.134     kristaps 1115:        print_otag(h, TAG_I, 1, tag);
1.18      kristaps 1116:        print_otag(h, TAG_A, 2, tag);
1.1       kristaps 1117:        return(1);
                   1118: }
                   1119:
                   1120: static int
                   1121: mdoc_bd_pre(MDOC_ARGS)
                   1122: {
1.188     schwarze 1123:        struct htmlpair          tag[2];
                   1124:        int                      comp, sv;
1.80      kristaps 1125:        const struct mdoc_node  *nn;
1.23      kristaps 1126:        struct roffsu            su;
1.1       kristaps 1127:
1.80      kristaps 1128:        if (MDOC_HEAD == n->type)
1.1       kristaps 1129:                return(0);
                   1130:
                   1131:        if (MDOC_BLOCK == n->type) {
1.137     kristaps 1132:                comp = n->norm->Bd.comp;
1.23      kristaps 1133:                for (nn = n; nn && ! comp; nn = nn->parent) {
                   1134:                        if (MDOC_BLOCK != nn->type)
                   1135:                                continue;
                   1136:                        if (MDOC_Ss == nn->tok || MDOC_Sh == nn->tok)
                   1137:                                comp = 1;
                   1138:                        if (nn->prev)
                   1139:                                break;
                   1140:                }
1.126     kristaps 1141:                if ( ! comp)
1.206     kristaps 1142:                        print_paragraph(h);
1.1       kristaps 1143:                return(1);
                   1144:        }
                   1145:
1.209     schwarze 1146:        /* Handle the -offset argument. */
                   1147:
                   1148:        if (n->norm->Bd.offs == NULL ||
                   1149:            ! strcmp(n->norm->Bd.offs, "left"))
                   1150:                SCALE_HS_INIT(&su, 0);
                   1151:        else if ( ! strcmp(n->norm->Bd.offs, "indent"))
                   1152:                SCALE_HS_INIT(&su, INDENT);
                   1153:        else if ( ! strcmp(n->norm->Bd.offs, "indent-two"))
                   1154:                SCALE_HS_INIT(&su, INDENT * 2);
                   1155:        else
                   1156:                a2width(n->norm->Bd.offs, &su);
1.188     schwarze 1157:
1.168     kristaps 1158:        bufinit(h);
1.126     kristaps 1159:        bufcat_su(h, "margin-left", &su);
                   1160:        PAIR_STYLE_INIT(&tag[0], h);
                   1161:
1.188     schwarze 1162:        if (DISP_unfilled != n->norm->Bd.type &&
                   1163:            DISP_literal != n->norm->Bd.type) {
1.126     kristaps 1164:                PAIR_CLASS_INIT(&tag[1], "display");
                   1165:                print_otag(h, TAG_DIV, 2, tag);
1.1       kristaps 1166:                return(1);
1.126     kristaps 1167:        }
1.1       kristaps 1168:
1.126     kristaps 1169:        PAIR_CLASS_INIT(&tag[1], "lit display");
                   1170:        print_otag(h, TAG_PRE, 2, tag);
1.1       kristaps 1171:
1.149     kristaps 1172:        /* This can be recursive: save & set our literal state. */
                   1173:
                   1174:        sv = h->flags & HTML_LITERAL;
                   1175:        h->flags |= HTML_LITERAL;
                   1176:
1.14      kristaps 1177:        for (nn = n->child; nn; nn = nn->next) {
1.184     schwarze 1178:                print_mdoc_node(meta, nn, h);
1.108     kristaps 1179:                /*
                   1180:                 * If the printed node flushes its own line, then we
                   1181:                 * needn't do it here as well.  This is hacky, but the
                   1182:                 * notion of selective eoln whitespace is pretty dumb
                   1183:                 * anyway, so don't sweat it.
                   1184:                 */
                   1185:                switch (nn->tok) {
1.188     schwarze 1186:                case MDOC_Sm:
1.111     kristaps 1187:                        /* FALLTHROUGH */
1.188     schwarze 1188:                case MDOC_br:
1.108     kristaps 1189:                        /* FALLTHROUGH */
1.188     schwarze 1190:                case MDOC_sp:
1.108     kristaps 1191:                        /* FALLTHROUGH */
1.188     schwarze 1192:                case MDOC_Bl:
1.114     kristaps 1193:                        /* FALLTHROUGH */
1.188     schwarze 1194:                case MDOC_D1:
1.114     kristaps 1195:                        /* FALLTHROUGH */
1.188     schwarze 1196:                case MDOC_Dl:
1.108     kristaps 1197:                        /* FALLTHROUGH */
1.188     schwarze 1198:                case MDOC_Lp:
1.108     kristaps 1199:                        /* FALLTHROUGH */
1.188     schwarze 1200:                case MDOC_Pp:
1.108     kristaps 1201:                        continue;
                   1202:                default:
                   1203:                        break;
                   1204:                }
1.216     schwarze 1205:                if (h->flags & HTML_NONEWLINE ||
                   1206:                    (nn->next && ! (nn->next->flags & MDOC_LINE)))
1.101     schwarze 1207:                        continue;
1.126     kristaps 1208:                else if (nn->next)
                   1209:                        print_text(h, "\n");
1.125     kristaps 1210:
1.101     schwarze 1211:                h->flags |= HTML_NOSPACE;
1.1       kristaps 1212:        }
1.149     kristaps 1213:
                   1214:        if (0 == sv)
                   1215:                h->flags &= ~HTML_LITERAL;
1.1       kristaps 1216:
                   1217:        return(0);
                   1218: }
                   1219:
                   1220: static int
                   1221: mdoc_pa_pre(MDOC_ARGS)
                   1222: {
                   1223:        struct htmlpair tag;
                   1224:
1.23      kristaps 1225:        PAIR_CLASS_INIT(&tag, "file");
1.133     kristaps 1226:        print_otag(h, TAG_I, 1, &tag);
1.1       kristaps 1227:        return(1);
                   1228: }
                   1229:
                   1230: static int
                   1231: mdoc_ad_pre(MDOC_ARGS)
                   1232: {
                   1233:        struct htmlpair tag;
                   1234:
1.23      kristaps 1235:        PAIR_CLASS_INIT(&tag, "addr");
1.133     kristaps 1236:        print_otag(h, TAG_I, 1, &tag);
1.1       kristaps 1237:        return(1);
                   1238: }
                   1239:
                   1240: static int
                   1241: mdoc_an_pre(MDOC_ARGS)
                   1242: {
                   1243:        struct htmlpair tag;
                   1244:
1.200     schwarze 1245:        if (n->norm->An.auth == AUTH_split) {
                   1246:                h->flags &= ~HTML_NOSPLIT;
                   1247:                h->flags |= HTML_SPLIT;
                   1248:                return(0);
                   1249:        }
                   1250:        if (n->norm->An.auth == AUTH_nosplit) {
                   1251:                h->flags &= ~HTML_SPLIT;
                   1252:                h->flags |= HTML_NOSPLIT;
                   1253:                return(0);
                   1254:        }
                   1255:
                   1256:        if (n->child == NULL)
                   1257:                return(0);
                   1258:
                   1259:        if (h->flags & HTML_SPLIT)
                   1260:                print_otag(h, TAG_BR, 0, NULL);
                   1261:
                   1262:        if (n->sec == SEC_AUTHORS && ! (h->flags & HTML_NOSPLIT))
                   1263:                h->flags |= HTML_SPLIT;
1.19      kristaps 1264:
1.23      kristaps 1265:        PAIR_CLASS_INIT(&tag, "author");
1.1       kristaps 1266:        print_otag(h, TAG_SPAN, 1, &tag);
                   1267:        return(1);
                   1268: }
                   1269:
                   1270: static int
                   1271: mdoc_cd_pre(MDOC_ARGS)
                   1272: {
                   1273:        struct htmlpair tag;
                   1274:
1.78      kristaps 1275:        synopsis_pre(h, n);
1.23      kristaps 1276:        PAIR_CLASS_INIT(&tag, "config");
1.132     kristaps 1277:        print_otag(h, TAG_B, 1, &tag);
1.1       kristaps 1278:        return(1);
                   1279: }
                   1280:
                   1281: static int
                   1282: mdoc_dv_pre(MDOC_ARGS)
                   1283: {
                   1284:        struct htmlpair tag;
                   1285:
1.23      kristaps 1286:        PAIR_CLASS_INIT(&tag, "define");
1.1       kristaps 1287:        print_otag(h, TAG_SPAN, 1, &tag);
                   1288:        return(1);
                   1289: }
                   1290:
                   1291: static int
                   1292: mdoc_ev_pre(MDOC_ARGS)
                   1293: {
                   1294:        struct htmlpair tag;
                   1295:
1.23      kristaps 1296:        PAIR_CLASS_INIT(&tag, "env");
1.1       kristaps 1297:        print_otag(h, TAG_SPAN, 1, &tag);
                   1298:        return(1);
                   1299: }
                   1300:
                   1301: static int
                   1302: mdoc_er_pre(MDOC_ARGS)
                   1303: {
                   1304:        struct htmlpair tag;
                   1305:
1.23      kristaps 1306:        PAIR_CLASS_INIT(&tag, "errno");
1.1       kristaps 1307:        print_otag(h, TAG_SPAN, 1, &tag);
                   1308:        return(1);
                   1309: }
                   1310:
                   1311: static int
                   1312: mdoc_fa_pre(MDOC_ARGS)
                   1313: {
                   1314:        const struct mdoc_node  *nn;
                   1315:        struct htmlpair          tag;
                   1316:        struct tag              *t;
                   1317:
1.23      kristaps 1318:        PAIR_CLASS_INIT(&tag, "farg");
1.1       kristaps 1319:        if (n->parent->tok != MDOC_Fo) {
1.133     kristaps 1320:                print_otag(h, TAG_I, 1, &tag);
1.1       kristaps 1321:                return(1);
                   1322:        }
                   1323:
                   1324:        for (nn = n->child; nn; nn = nn->next) {
1.133     kristaps 1325:                t = print_otag(h, TAG_I, 1, &tag);
1.1       kristaps 1326:                print_text(h, nn->string);
                   1327:                print_tagq(h, t);
1.155     kristaps 1328:                if (nn->next) {
                   1329:                        h->flags |= HTML_NOSPACE;
1.1       kristaps 1330:                        print_text(h, ",");
1.155     kristaps 1331:                }
1.1       kristaps 1332:        }
                   1333:
1.155     kristaps 1334:        if (n->child && n->next && n->next->tok == MDOC_Fa) {
                   1335:                h->flags |= HTML_NOSPACE;
1.1       kristaps 1336:                print_text(h, ",");
1.155     kristaps 1337:        }
1.1       kristaps 1338:
                   1339:        return(0);
                   1340: }
                   1341:
                   1342: static int
                   1343: mdoc_fd_pre(MDOC_ARGS)
                   1344: {
1.162     kristaps 1345:        struct htmlpair  tag[2];
                   1346:        char             buf[BUFSIZ];
                   1347:        size_t           sz;
                   1348:        int              i;
                   1349:        struct tag      *t;
1.1       kristaps 1350:
1.78      kristaps 1351:        synopsis_pre(h, n);
                   1352:
1.162     kristaps 1353:        if (NULL == (n = n->child))
                   1354:                return(0);
                   1355:
                   1356:        assert(MDOC_TEXT == n->type);
                   1357:
                   1358:        if (strcmp(n->string, "#include")) {
                   1359:                PAIR_CLASS_INIT(&tag[0], "macro");
                   1360:                print_otag(h, TAG_B, 1, tag);
                   1361:                return(1);
                   1362:        }
                   1363:
                   1364:        PAIR_CLASS_INIT(&tag[0], "includes");
                   1365:        print_otag(h, TAG_B, 1, tag);
                   1366:        print_text(h, n->string);
                   1367:
                   1368:        if (NULL != (n = n->next)) {
                   1369:                assert(MDOC_TEXT == n->type);
1.190     schwarze 1370:
                   1371:                /*
                   1372:                 * XXX This is broken and not easy to fix.
                   1373:                 * When using -Oincludes, truncation may occur.
                   1374:                 * Dynamic allocation wouldn't help because
                   1375:                 * passing long strings to buffmt_includes()
                   1376:                 * does not work either.
                   1377:                 */
                   1378:
1.188     schwarze 1379:                strlcpy(buf, '<' == *n->string || '"' == *n->string ?
                   1380:                    n->string + 1 : n->string, BUFSIZ);
1.162     kristaps 1381:
                   1382:                sz = strlen(buf);
                   1383:                if (sz && ('>' == buf[sz - 1] || '"' == buf[sz - 1]))
                   1384:                        buf[sz - 1] = '\0';
                   1385:
                   1386:                PAIR_CLASS_INIT(&tag[0], "link-includes");
1.188     schwarze 1387:
1.162     kristaps 1388:                i = 1;
                   1389:                if (h->base_includes) {
                   1390:                        buffmt_includes(h, buf);
                   1391:                        PAIR_HREF_INIT(&tag[i], h->buf);
                   1392:                        i++;
1.188     schwarze 1393:                }
1.162     kristaps 1394:
                   1395:                t = print_otag(h, TAG_A, i, tag);
                   1396:                print_text(h, n->string);
                   1397:                print_tagq(h, t);
                   1398:
                   1399:                n = n->next;
                   1400:        }
                   1401:
                   1402:        for ( ; n; n = n->next) {
                   1403:                assert(MDOC_TEXT == n->type);
                   1404:                print_text(h, n->string);
                   1405:        }
                   1406:
                   1407:        return(0);
1.1       kristaps 1408: }
                   1409:
                   1410: static int
                   1411: mdoc_vt_pre(MDOC_ARGS)
                   1412: {
1.23      kristaps 1413:        struct htmlpair  tag;
1.1       kristaps 1414:
1.78      kristaps 1415:        if (MDOC_BLOCK == n->type) {
                   1416:                synopsis_pre(h, n);
1.54      kristaps 1417:                return(1);
1.78      kristaps 1418:        } else if (MDOC_ELEM == n->type) {
                   1419:                synopsis_pre(h, n);
1.54      kristaps 1420:        } else if (MDOC_HEAD == n->type)
                   1421:                return(0);
1.1       kristaps 1422:
1.23      kristaps 1423:        PAIR_CLASS_INIT(&tag, "type");
1.1       kristaps 1424:        print_otag(h, TAG_SPAN, 1, &tag);
                   1425:        return(1);
                   1426: }
                   1427:
                   1428: static int
                   1429: mdoc_ft_pre(MDOC_ARGS)
                   1430: {
1.23      kristaps 1431:        struct htmlpair  tag;
1.1       kristaps 1432:
1.78      kristaps 1433:        synopsis_pre(h, n);
1.23      kristaps 1434:        PAIR_CLASS_INIT(&tag, "ftype");
1.133     kristaps 1435:        print_otag(h, TAG_I, 1, &tag);
1.1       kristaps 1436:        return(1);
                   1437: }
                   1438:
                   1439: static int
                   1440: mdoc_fn_pre(MDOC_ARGS)
                   1441: {
1.157     kristaps 1442:        struct tag      *t;
                   1443:        struct htmlpair  tag[2];
                   1444:        char             nbuf[BUFSIZ];
                   1445:        const char      *sp, *ep;
                   1446:        int              sz, i, pretty;
1.1       kristaps 1447:
1.157     kristaps 1448:        pretty = MDOC_SYNPRETTY & n->flags;
1.78      kristaps 1449:        synopsis_pre(h, n);
1.1       kristaps 1450:
1.7       kristaps 1451:        /* Split apart into type and name. */
                   1452:        assert(n->child->string);
                   1453:        sp = n->child->string;
1.19      kristaps 1454:
1.26      kristaps 1455:        ep = strchr(sp, ' ');
                   1456:        if (NULL != ep) {
1.23      kristaps 1457:                PAIR_CLASS_INIT(&tag[0], "ftype");
1.133     kristaps 1458:                t = print_otag(h, TAG_I, 1, tag);
1.188     schwarze 1459:
1.19      kristaps 1460:                while (ep) {
                   1461:                        sz = MIN((int)(ep - sp), BUFSIZ - 1);
                   1462:                        (void)memcpy(nbuf, sp, (size_t)sz);
                   1463:                        nbuf[sz] = '\0';
                   1464:                        print_text(h, nbuf);
                   1465:                        sp = ++ep;
                   1466:                        ep = strchr(sp, ' ');
                   1467:                }
                   1468:                print_tagq(h, t);
1.7       kristaps 1469:        }
1.1       kristaps 1470:
1.23      kristaps 1471:        PAIR_CLASS_INIT(&tag[0], "fname");
1.57      kristaps 1472:
                   1473:        /*
                   1474:         * FIXME: only refer to IDs that we know exist.
                   1475:         */
                   1476:
                   1477: #if 0
1.87      kristaps 1478:        if (MDOC_SYNPRETTY & n->flags) {
1.57      kristaps 1479:                nbuf[0] = '\0';
                   1480:                html_idcat(nbuf, sp, BUFSIZ);
                   1481:                PAIR_ID_INIT(&tag[1], nbuf);
                   1482:        } else {
                   1483:                strlcpy(nbuf, "#", BUFSIZ);
                   1484:                html_idcat(nbuf, sp, BUFSIZ);
                   1485:                PAIR_HREF_INIT(&tag[1], nbuf);
                   1486:        }
                   1487: #endif
                   1488:
1.132     kristaps 1489:        t = print_otag(h, TAG_B, 1, tag);
1.7       kristaps 1490:
1.190     schwarze 1491:        if (sp)
                   1492:                print_text(h, sp);
1.7       kristaps 1493:
1.1       kristaps 1494:        print_tagq(h, t);
                   1495:
                   1496:        h->flags |= HTML_NOSPACE;
                   1497:        print_text(h, "(");
1.163     kristaps 1498:        h->flags |= HTML_NOSPACE;
1.1       kristaps 1499:
1.168     kristaps 1500:        PAIR_CLASS_INIT(&tag[0], "farg");
1.23      kristaps 1501:        bufinit(h);
                   1502:        bufcat_style(h, "white-space", "nowrap");
                   1503:        PAIR_STYLE_INIT(&tag[1], h);
                   1504:
1.157     kristaps 1505:        for (n = n->child->next; n; n = n->next) {
1.23      kristaps 1506:                i = 1;
1.87      kristaps 1507:                if (MDOC_SYNPRETTY & n->flags)
1.23      kristaps 1508:                        i = 2;
1.133     kristaps 1509:                t = print_otag(h, TAG_I, i, tag);
1.157     kristaps 1510:                print_text(h, n->string);
1.1       kristaps 1511:                print_tagq(h, t);
1.157     kristaps 1512:                if (n->next) {
1.155     kristaps 1513:                        h->flags |= HTML_NOSPACE;
1.1       kristaps 1514:                        print_text(h, ",");
1.155     kristaps 1515:                }
1.1       kristaps 1516:        }
                   1517:
1.155     kristaps 1518:        h->flags |= HTML_NOSPACE;
1.1       kristaps 1519:        print_text(h, ")");
1.155     kristaps 1520:
1.157     kristaps 1521:        if (pretty) {
1.155     kristaps 1522:                h->flags |= HTML_NOSPACE;
1.1       kristaps 1523:                print_text(h, ";");
1.155     kristaps 1524:        }
1.99      kristaps 1525:
                   1526:        return(0);
                   1527: }
                   1528:
                   1529: static int
                   1530: mdoc_sm_pre(MDOC_ARGS)
                   1531: {
                   1532:
1.192     schwarze 1533:        if (NULL == n->child)
                   1534:                h->flags ^= HTML_NONOSPACE;
                   1535:        else if (0 == strcmp("on", n->child->string))
1.99      kristaps 1536:                h->flags &= ~HTML_NONOSPACE;
1.192     schwarze 1537:        else
1.99      kristaps 1538:                h->flags |= HTML_NONOSPACE;
1.192     schwarze 1539:
                   1540:        if ( ! (HTML_NONOSPACE & h->flags))
                   1541:                h->flags &= ~HTML_NOSPACE;
1.1       kristaps 1542:
                   1543:        return(0);
                   1544: }
                   1545:
1.120     kristaps 1546: static int
1.191     schwarze 1547: mdoc_skip_pre(MDOC_ARGS)
1.187     schwarze 1548: {
                   1549:
                   1550:        return(0);
                   1551: }
                   1552:
                   1553: static int
1.120     kristaps 1554: mdoc_pp_pre(MDOC_ARGS)
                   1555: {
                   1556:
1.206     kristaps 1557:        print_paragraph(h);
1.120     kristaps 1558:        return(0);
                   1559: }
1.1       kristaps 1560:
                   1561: static int
                   1562: mdoc_sp_pre(MDOC_ARGS)
                   1563: {
1.120     kristaps 1564:        struct roffsu    su;
1.23      kristaps 1565:        struct htmlpair  tag;
1.1       kristaps 1566:
1.120     kristaps 1567:        SCALE_VS_INIT(&su, 1);
                   1568:
                   1569:        if (MDOC_sp == n->tok) {
1.218     schwarze 1570:                if (NULL != (n = n->child)) {
1.171     kristaps 1571:                        if ( ! a2roffsu(n->string, &su, SCALE_VS))
1.217     schwarze 1572:                                su.scale = 1.0;
1.218     schwarze 1573:                        else if (su.scale < 0.0)
                   1574:                                su.scale = 0.0;
                   1575:                }
1.120     kristaps 1576:        } else
1.194     schwarze 1577:                su.scale = 0.0;
1.1       kristaps 1578:
1.168     kristaps 1579:        bufinit(h);
1.23      kristaps 1580:        bufcat_su(h, "height", &su);
                   1581:        PAIR_STYLE_INIT(&tag, h);
1.1       kristaps 1582:        print_otag(h, TAG_DIV, 1, &tag);
1.120     kristaps 1583:
1.42      kristaps 1584:        /* So the div isn't empty: */
                   1585:        print_text(h, "\\~");
                   1586:
                   1587:        return(0);
1.1       kristaps 1588:
                   1589: }
1.2       kristaps 1590:
                   1591: static int
                   1592: mdoc_lk_pre(MDOC_ARGS)
                   1593: {
1.158     kristaps 1594:        struct htmlpair  tag[2];
                   1595:
                   1596:        if (NULL == (n = n->child))
                   1597:                return(0);
1.2       kristaps 1598:
1.158     kristaps 1599:        assert(MDOC_TEXT == n->type);
1.2       kristaps 1600:
1.23      kristaps 1601:        PAIR_CLASS_INIT(&tag[0], "link-ext");
1.158     kristaps 1602:        PAIR_HREF_INIT(&tag[1], n->string);
                   1603:
1.2       kristaps 1604:        print_otag(h, TAG_A, 2, tag);
                   1605:
1.170     kristaps 1606:        if (NULL == n->next)
                   1607:                print_text(h, n->string);
                   1608:
                   1609:        for (n = n->next; n; n = n->next)
1.158     kristaps 1610:                print_text(h, n->string);
1.2       kristaps 1611:
                   1612:        return(0);
                   1613: }
                   1614:
                   1615: static int
                   1616: mdoc_mt_pre(MDOC_ARGS)
                   1617: {
1.159     kristaps 1618:        struct htmlpair  tag[2];
                   1619:        struct tag      *t;
1.2       kristaps 1620:
1.23      kristaps 1621:        PAIR_CLASS_INIT(&tag[0], "link-mail");
1.2       kristaps 1622:
1.159     kristaps 1623:        for (n = n->child; n; n = n->next) {
                   1624:                assert(MDOC_TEXT == n->type);
                   1625:
1.16      kristaps 1626:                bufinit(h);
                   1627:                bufcat(h, "mailto:");
1.159     kristaps 1628:                bufcat(h, n->string);
                   1629:
1.57      kristaps 1630:                PAIR_HREF_INIT(&tag[1], h->buf);
1.2       kristaps 1631:                t = print_otag(h, TAG_A, 2, tag);
1.159     kristaps 1632:                print_text(h, n->string);
1.2       kristaps 1633:                print_tagq(h, t);
                   1634:        }
1.188     schwarze 1635:
1.2       kristaps 1636:        return(0);
                   1637: }
1.4       kristaps 1638:
                   1639: static int
                   1640: mdoc_fo_pre(MDOC_ARGS)
                   1641: {
1.77      kristaps 1642:        struct htmlpair  tag;
                   1643:        struct tag      *t;
1.4       kristaps 1644:
                   1645:        if (MDOC_BODY == n->type) {
                   1646:                h->flags |= HTML_NOSPACE;
                   1647:                print_text(h, "(");
                   1648:                h->flags |= HTML_NOSPACE;
                   1649:                return(1);
1.77      kristaps 1650:        } else if (MDOC_BLOCK == n->type) {
1.78      kristaps 1651:                synopsis_pre(h, n);
1.4       kristaps 1652:                return(1);
1.57      kristaps 1653:        }
1.4       kristaps 1654:
1.77      kristaps 1655:        /* XXX: we drop non-initial arguments as per groff. */
                   1656:
                   1657:        assert(n->child);
                   1658:        assert(n->child->string);
                   1659:
1.23      kristaps 1660:        PAIR_CLASS_INIT(&tag, "fname");
1.139     kristaps 1661:        t = print_otag(h, TAG_B, 1, &tag);
1.77      kristaps 1662:        print_text(h, n->child->string);
                   1663:        print_tagq(h, t);
                   1664:        return(0);
1.4       kristaps 1665: }
                   1666:
                   1667: static void
                   1668: mdoc_fo_post(MDOC_ARGS)
                   1669: {
1.78      kristaps 1670:
1.4       kristaps 1671:        if (MDOC_BODY != n->type)
                   1672:                return;
1.155     kristaps 1673:        h->flags |= HTML_NOSPACE;
1.4       kristaps 1674:        print_text(h, ")");
1.155     kristaps 1675:        h->flags |= HTML_NOSPACE;
1.4       kristaps 1676:        print_text(h, ";");
                   1677: }
                   1678:
                   1679: static int
                   1680: mdoc_in_pre(MDOC_ARGS)
                   1681: {
1.156     kristaps 1682:        struct tag      *t;
                   1683:        struct htmlpair  tag[2];
                   1684:        int              i;
1.34      kristaps 1685:
1.78      kristaps 1686:        synopsis_pre(h, n);
                   1687:
1.23      kristaps 1688:        PAIR_CLASS_INIT(&tag[0], "includes");
1.132     kristaps 1689:        print_otag(h, TAG_B, 1, tag);
1.4       kristaps 1690:
1.156     kristaps 1691:        /*
                   1692:         * The first argument of the `In' gets special treatment as
                   1693:         * being a linked value.  Subsequent values are printed
                   1694:         * afterward.  groff does similarly.  This also handles the case
                   1695:         * of no children.
                   1696:         */
                   1697:
1.87      kristaps 1698:        if (MDOC_SYNPRETTY & n->flags && MDOC_LINE & n->flags)
1.4       kristaps 1699:                print_text(h, "#include");
                   1700:
                   1701:        print_text(h, "<");
                   1702:        h->flags |= HTML_NOSPACE;
                   1703:
1.156     kristaps 1704:        if (NULL != (n = n->child)) {
                   1705:                assert(MDOC_TEXT == n->type);
                   1706:
1.23      kristaps 1707:                PAIR_CLASS_INIT(&tag[0], "link-includes");
1.156     kristaps 1708:
1.23      kristaps 1709:                i = 1;
1.17      kristaps 1710:                if (h->base_includes) {
1.156     kristaps 1711:                        buffmt_includes(h, n->string);
1.161     kristaps 1712:                        PAIR_HREF_INIT(&tag[i], h->buf);
                   1713:                        i++;
1.188     schwarze 1714:                }
1.156     kristaps 1715:
1.17      kristaps 1716:                t = print_otag(h, TAG_A, i, tag);
1.156     kristaps 1717:                print_text(h, n->string);
1.17      kristaps 1718:                print_tagq(h, t);
1.156     kristaps 1719:
                   1720:                n = n->next;
1.17      kristaps 1721:        }
1.4       kristaps 1722:
                   1723:        h->flags |= HTML_NOSPACE;
                   1724:        print_text(h, ">");
1.156     kristaps 1725:
                   1726:        for ( ; n; n = n->next) {
                   1727:                assert(MDOC_TEXT == n->type);
                   1728:                print_text(h, n->string);
                   1729:        }
1.4       kristaps 1730:
                   1731:        return(0);
                   1732: }
                   1733:
                   1734: static int
                   1735: mdoc_ic_pre(MDOC_ARGS)
                   1736: {
                   1737:        struct htmlpair tag;
                   1738:
1.23      kristaps 1739:        PAIR_CLASS_INIT(&tag, "cmd");
1.132     kristaps 1740:        print_otag(h, TAG_B, 1, &tag);
1.4       kristaps 1741:        return(1);
                   1742: }
                   1743:
                   1744: static int
                   1745: mdoc_rv_pre(MDOC_ARGS)
                   1746: {
1.159     kristaps 1747:        struct htmlpair  tag;
                   1748:        struct tag      *t;
                   1749:        int              nchild;
1.4       kristaps 1750:
1.127     kristaps 1751:        if (n->prev)
                   1752:                print_otag(h, TAG_BR, 0, NULL);
                   1753:
1.160     kristaps 1754:        PAIR_CLASS_INIT(&tag, "fname");
                   1755:
1.193     schwarze 1756:        nchild = n->nchild;
                   1757:        if (nchild > 0) {
                   1758:                print_text(h, "The");
1.4       kristaps 1759:
1.193     schwarze 1760:                for (n = n->child; n; n = n->next) {
                   1761:                        t = print_otag(h, TAG_B, 1, &tag);
                   1762:                        print_text(h, n->string);
                   1763:                        print_tagq(h, t);
1.159     kristaps 1764:
1.193     schwarze 1765:                        h->flags |= HTML_NOSPACE;
                   1766:                        print_text(h, "()");
1.160     kristaps 1767:
1.193     schwarze 1768:                        if (n->next == NULL)
                   1769:                                continue;
1.159     kristaps 1770:
1.193     schwarze 1771:                        if (nchild > 2) {
                   1772:                                h->flags |= HTML_NOSPACE;
                   1773:                                print_text(h, ",");
                   1774:                        }
                   1775:                        if (n->next->next == NULL)
                   1776:                                print_text(h, "and");
1.159     kristaps 1777:                }
1.4       kristaps 1778:
1.193     schwarze 1779:                if (nchild > 1)
                   1780:                        print_text(h, "functions return");
                   1781:                else
                   1782:                        print_text(h, "function returns");
1.4       kristaps 1783:
1.193     schwarze 1784:                print_text(h, "the value\\~0 if successful;");
                   1785:        } else
                   1786:                print_text(h, "Upon successful completion,"
                   1787:                     " the value\\~0 is returned;");
1.4       kristaps 1788:
1.193     schwarze 1789:        print_text(h, "otherwise the value\\~\\-1 is returned"
                   1790:           " and the global variable");
1.4       kristaps 1791:
1.23      kristaps 1792:        PAIR_CLASS_INIT(&tag, "var");
1.132     kristaps 1793:        t = print_otag(h, TAG_B, 1, &tag);
1.4       kristaps 1794:        print_text(h, "errno");
                   1795:        print_tagq(h, t);
1.188     schwarze 1796:        print_text(h, "is set to indicate the error.");
1.4       kristaps 1797:        return(0);
                   1798: }
                   1799:
                   1800: static int
                   1801: mdoc_va_pre(MDOC_ARGS)
                   1802: {
                   1803:        struct htmlpair tag;
                   1804:
1.23      kristaps 1805:        PAIR_CLASS_INIT(&tag, "var");
1.132     kristaps 1806:        print_otag(h, TAG_B, 1, &tag);
1.4       kristaps 1807:        return(1);
                   1808: }
                   1809:
                   1810: static int
1.5       kristaps 1811: mdoc_ap_pre(MDOC_ARGS)
                   1812: {
1.188     schwarze 1813:
1.5       kristaps 1814:        h->flags |= HTML_NOSPACE;
                   1815:        print_text(h, "\\(aq");
                   1816:        h->flags |= HTML_NOSPACE;
                   1817:        return(1);
                   1818: }
                   1819:
                   1820: static int
                   1821: mdoc_bf_pre(MDOC_ARGS)
                   1822: {
1.23      kristaps 1823:        struct htmlpair  tag[2];
                   1824:        struct roffsu    su;
1.5       kristaps 1825:
                   1826:        if (MDOC_HEAD == n->type)
                   1827:                return(0);
1.92      kristaps 1828:        else if (MDOC_BODY != n->type)
1.5       kristaps 1829:                return(1);
                   1830:
1.198     schwarze 1831:        if (FONT_Em == n->norm->Bf.font)
                   1832:                PAIR_CLASS_INIT(&tag[0], "emph");
                   1833:        else if (FONT_Sy == n->norm->Bf.font)
1.92      kristaps 1834:                PAIR_CLASS_INIT(&tag[0], "symb");
1.188     schwarze 1835:        else if (FONT_Li == n->norm->Bf.font)
1.92      kristaps 1836:                PAIR_CLASS_INIT(&tag[0], "lit");
                   1837:        else
                   1838:                PAIR_CLASS_INIT(&tag[0], "none");
1.5       kristaps 1839:
1.188     schwarze 1840:        /*
1.92      kristaps 1841:         * We want this to be inline-formatted, but needs to be div to
1.188     schwarze 1842:         * accept block children.
1.92      kristaps 1843:         */
1.168     kristaps 1844:        bufinit(h);
1.23      kristaps 1845:        bufcat_style(h, "display", "inline");
                   1846:        SCALE_HS_INIT(&su, 1);
1.92      kristaps 1847:        /* Needs a left-margin for spacing. */
                   1848:        bufcat_su(h, "margin-left", &su);
1.23      kristaps 1849:        PAIR_STYLE_INIT(&tag[1], h);
1.5       kristaps 1850:        print_otag(h, TAG_DIV, 2, tag);
                   1851:        return(1);
                   1852: }
                   1853:
                   1854: static int
                   1855: mdoc_ms_pre(MDOC_ARGS)
                   1856: {
                   1857:        struct htmlpair tag;
                   1858:
1.23      kristaps 1859:        PAIR_CLASS_INIT(&tag, "symb");
1.5       kristaps 1860:        print_otag(h, TAG_SPAN, 1, &tag);
                   1861:        return(1);
                   1862: }
                   1863:
                   1864: static int
1.110     schwarze 1865: mdoc_igndelim_pre(MDOC_ARGS)
1.5       kristaps 1866: {
                   1867:
                   1868:        h->flags |= HTML_IGNDELIM;
                   1869:        return(1);
                   1870: }
                   1871:
                   1872: static void
                   1873: mdoc_pf_post(MDOC_ARGS)
                   1874: {
                   1875:
1.214     schwarze 1876:        if ( ! (n->next == NULL || n->next->flags & MDOC_LINE))
                   1877:                h->flags |= HTML_NOSPACE;
1.5       kristaps 1878: }
                   1879:
                   1880: static int
                   1881: mdoc_rs_pre(MDOC_ARGS)
                   1882: {
1.23      kristaps 1883:        struct htmlpair  tag;
1.5       kristaps 1884:
                   1885:        if (MDOC_BLOCK != n->type)
                   1886:                return(1);
                   1887:
1.120     kristaps 1888:        if (n->prev && SEC_SEE_ALSO == n->sec)
1.206     kristaps 1889:                print_paragraph(h);
1.5       kristaps 1890:
1.23      kristaps 1891:        PAIR_CLASS_INIT(&tag, "ref");
1.8       kristaps 1892:        print_otag(h, TAG_SPAN, 1, &tag);
1.210     schwarze 1893:        return(1);
                   1894: }
                   1895:
                   1896: static int
                   1897: mdoc_no_pre(MDOC_ARGS)
                   1898: {
                   1899:        struct htmlpair tag;
                   1900:
                   1901:        PAIR_CLASS_INIT(&tag, "none");
                   1902:        print_otag(h, TAG_CODE, 1, &tag);
1.5       kristaps 1903:        return(1);
                   1904: }
1.6       kristaps 1905:
                   1906: static int
                   1907: mdoc_li_pre(MDOC_ARGS)
                   1908: {
                   1909:        struct htmlpair tag;
                   1910:
1.23      kristaps 1911:        PAIR_CLASS_INIT(&tag, "lit");
1.176     kristaps 1912:        print_otag(h, TAG_CODE, 1, &tag);
1.6       kristaps 1913:        return(1);
                   1914: }
                   1915:
                   1916: static int
                   1917: mdoc_sy_pre(MDOC_ARGS)
                   1918: {
                   1919:        struct htmlpair tag;
                   1920:
1.23      kristaps 1921:        PAIR_CLASS_INIT(&tag, "symb");
1.6       kristaps 1922:        print_otag(h, TAG_SPAN, 1, &tag);
                   1923:        return(1);
                   1924: }
                   1925:
                   1926: static int
                   1927: mdoc_bt_pre(MDOC_ARGS)
                   1928: {
                   1929:
                   1930:        print_text(h, "is currently in beta test.");
                   1931:        return(0);
                   1932: }
                   1933:
                   1934: static int
                   1935: mdoc_ud_pre(MDOC_ARGS)
                   1936: {
                   1937:
                   1938:        print_text(h, "currently under development.");
                   1939:        return(0);
                   1940: }
                   1941:
                   1942: static int
                   1943: mdoc_lb_pre(MDOC_ARGS)
                   1944: {
                   1945:        struct htmlpair tag;
                   1946:
1.127     kristaps 1947:        if (SEC_LIBRARY == n->sec && MDOC_LINE & n->flags && n->prev)
                   1948:                print_otag(h, TAG_BR, 0, NULL);
                   1949:
1.23      kristaps 1950:        PAIR_CLASS_INIT(&tag, "lib");
1.6       kristaps 1951:        print_otag(h, TAG_SPAN, 1, &tag);
                   1952:        return(1);
                   1953: }
1.10      kristaps 1954:
                   1955: static int
                   1956: mdoc__x_pre(MDOC_ARGS)
                   1957: {
1.38      kristaps 1958:        struct htmlpair tag[2];
1.133     kristaps 1959:        enum htmltag    t;
                   1960:
                   1961:        t = TAG_SPAN;
1.37      kristaps 1962:
1.10      kristaps 1963:        switch (n->tok) {
1.188     schwarze 1964:        case MDOC__A:
1.38      kristaps 1965:                PAIR_CLASS_INIT(&tag[0], "ref-auth");
1.103     kristaps 1966:                if (n->prev && MDOC__A == n->prev->tok)
                   1967:                        if (NULL == n->next || MDOC__A != n->next->tok)
                   1968:                                print_text(h, "and");
1.10      kristaps 1969:                break;
1.188     schwarze 1970:        case MDOC__B:
1.38      kristaps 1971:                PAIR_CLASS_INIT(&tag[0], "ref-book");
1.133     kristaps 1972:                t = TAG_I;
1.10      kristaps 1973:                break;
1.188     schwarze 1974:        case MDOC__C:
1.38      kristaps 1975:                PAIR_CLASS_INIT(&tag[0], "ref-city");
1.10      kristaps 1976:                break;
1.188     schwarze 1977:        case MDOC__D:
1.38      kristaps 1978:                PAIR_CLASS_INIT(&tag[0], "ref-date");
1.10      kristaps 1979:                break;
1.188     schwarze 1980:        case MDOC__I:
1.38      kristaps 1981:                PAIR_CLASS_INIT(&tag[0], "ref-issue");
1.133     kristaps 1982:                t = TAG_I;
1.10      kristaps 1983:                break;
1.188     schwarze 1984:        case MDOC__J:
1.38      kristaps 1985:                PAIR_CLASS_INIT(&tag[0], "ref-jrnl");
1.133     kristaps 1986:                t = TAG_I;
1.10      kristaps 1987:                break;
1.188     schwarze 1988:        case MDOC__N:
1.38      kristaps 1989:                PAIR_CLASS_INIT(&tag[0], "ref-num");
1.10      kristaps 1990:                break;
1.188     schwarze 1991:        case MDOC__O:
1.38      kristaps 1992:                PAIR_CLASS_INIT(&tag[0], "ref-opt");
1.10      kristaps 1993:                break;
1.188     schwarze 1994:        case MDOC__P:
1.38      kristaps 1995:                PAIR_CLASS_INIT(&tag[0], "ref-page");
1.10      kristaps 1996:                break;
1.188     schwarze 1997:        case MDOC__Q:
1.38      kristaps 1998:                PAIR_CLASS_INIT(&tag[0], "ref-corp");
1.10      kristaps 1999:                break;
1.188     schwarze 2000:        case MDOC__R:
1.38      kristaps 2001:                PAIR_CLASS_INIT(&tag[0], "ref-rep");
1.10      kristaps 2002:                break;
1.188     schwarze 2003:        case MDOC__T:
1.38      kristaps 2004:                PAIR_CLASS_INIT(&tag[0], "ref-title");
1.10      kristaps 2005:                break;
1.188     schwarze 2006:        case MDOC__U:
1.38      kristaps 2007:                PAIR_CLASS_INIT(&tag[0], "link-ref");
                   2008:                break;
1.188     schwarze 2009:        case MDOC__V:
1.38      kristaps 2010:                PAIR_CLASS_INIT(&tag[0], "ref-vol");
1.10      kristaps 2011:                break;
                   2012:        default:
                   2013:                abort();
                   2014:                /* NOTREACHED */
                   2015:        }
                   2016:
1.38      kristaps 2017:        if (MDOC__U != n->tok) {
1.133     kristaps 2018:                print_otag(h, t, 1, tag);
1.38      kristaps 2019:                return(1);
                   2020:        }
                   2021:
                   2022:        PAIR_HREF_INIT(&tag[1], n->child->string);
                   2023:        print_otag(h, TAG_A, 2, tag);
1.103     kristaps 2024:
1.10      kristaps 2025:        return(1);
                   2026: }
                   2027:
                   2028: static void
                   2029: mdoc__x_post(MDOC_ARGS)
                   2030: {
1.103     kristaps 2031:
                   2032:        if (MDOC__A == n->tok && n->next && MDOC__A == n->next->tok)
                   2033:                if (NULL == n->next->next || MDOC__A != n->next->next->tok)
                   2034:                        if (NULL == n->prev || MDOC__A != n->prev->tok)
                   2035:                                return;
1.10      kristaps 2036:
1.61      kristaps 2037:        /* TODO: %U */
                   2038:
1.106     kristaps 2039:        if (NULL == n->parent || MDOC_Rs != n->parent->tok)
                   2040:                return;
                   2041:
1.155     kristaps 2042:        h->flags |= HTML_NOSPACE;
1.10      kristaps 2043:        print_text(h, n->next ? "," : ".");
1.94      kristaps 2044: }
                   2045:
                   2046: static int
                   2047: mdoc_bk_pre(MDOC_ARGS)
                   2048: {
                   2049:
                   2050:        switch (n->type) {
1.188     schwarze 2051:        case MDOC_BLOCK:
1.94      kristaps 2052:                break;
1.188     schwarze 2053:        case MDOC_HEAD:
1.94      kristaps 2054:                return(0);
1.188     schwarze 2055:        case MDOC_BODY:
1.131     kristaps 2056:                if (n->parent->args || 0 == n->prev->nchild)
                   2057:                        h->flags |= HTML_PREKEEP;
1.94      kristaps 2058:                break;
                   2059:        default:
                   2060:                abort();
                   2061:                /* NOTREACHED */
                   2062:        }
                   2063:
                   2064:        return(1);
                   2065: }
                   2066:
                   2067: static void
                   2068: mdoc_bk_post(MDOC_ARGS)
                   2069: {
                   2070:
                   2071:        if (MDOC_BODY == n->type)
                   2072:                h->flags &= ~(HTML_KEEP | HTML_PREKEEP);
1.10      kristaps 2073: }
1.107     kristaps 2074:
                   2075: static int
                   2076: mdoc_quote_pre(MDOC_ARGS)
                   2077: {
                   2078:        struct htmlpair tag;
                   2079:
                   2080:        if (MDOC_BODY != n->type)
                   2081:                return(1);
                   2082:
                   2083:        switch (n->tok) {
1.188     schwarze 2084:        case MDOC_Ao:
1.107     kristaps 2085:                /* FALLTHROUGH */
1.188     schwarze 2086:        case MDOC_Aq:
1.219   ! schwarze 2087:                print_text(h, n->nchild == 1 &&
        !          2088:                    n->child->tok == MDOC_Mt ?  "<" : "\\(la");
1.107     kristaps 2089:                break;
1.188     schwarze 2090:        case MDOC_Bro:
1.107     kristaps 2091:                /* FALLTHROUGH */
1.188     schwarze 2092:        case MDOC_Brq:
1.107     kristaps 2093:                print_text(h, "\\(lC");
                   2094:                break;
1.188     schwarze 2095:        case MDOC_Bo:
1.107     kristaps 2096:                /* FALLTHROUGH */
1.188     schwarze 2097:        case MDOC_Bq:
1.107     kristaps 2098:                print_text(h, "\\(lB");
                   2099:                break;
1.188     schwarze 2100:        case MDOC_Oo:
1.107     kristaps 2101:                /* FALLTHROUGH */
1.188     schwarze 2102:        case MDOC_Op:
1.107     kristaps 2103:                print_text(h, "\\(lB");
1.109     kristaps 2104:                h->flags |= HTML_NOSPACE;
1.107     kristaps 2105:                PAIR_CLASS_INIT(&tag, "opt");
                   2106:                print_otag(h, TAG_SPAN, 1, &tag);
                   2107:                break;
1.191     schwarze 2108:        case MDOC_En:
                   2109:                if (NULL == n->norm->Es ||
                   2110:                    NULL == n->norm->Es->child)
                   2111:                        return(1);
                   2112:                print_text(h, n->norm->Es->child->string);
                   2113:                break;
1.188     schwarze 2114:        case MDOC_Eo:
1.182     schwarze 2115:                break;
1.188     schwarze 2116:        case MDOC_Do:
1.107     kristaps 2117:                /* FALLTHROUGH */
1.188     schwarze 2118:        case MDOC_Dq:
1.107     kristaps 2119:                /* FALLTHROUGH */
1.188     schwarze 2120:        case MDOC_Qo:
1.107     kristaps 2121:                /* FALLTHROUGH */
1.188     schwarze 2122:        case MDOC_Qq:
1.107     kristaps 2123:                print_text(h, "\\(lq");
                   2124:                break;
1.188     schwarze 2125:        case MDOC_Po:
1.107     kristaps 2126:                /* FALLTHROUGH */
1.188     schwarze 2127:        case MDOC_Pq:
1.107     kristaps 2128:                print_text(h, "(");
                   2129:                break;
1.188     schwarze 2130:        case MDOC_Ql:
1.178     kristaps 2131:                print_text(h, "\\(oq");
                   2132:                h->flags |= HTML_NOSPACE;
                   2133:                PAIR_CLASS_INIT(&tag, "lit");
                   2134:                print_otag(h, TAG_CODE, 1, &tag);
                   2135:                break;
1.188     schwarze 2136:        case MDOC_So:
1.107     kristaps 2137:                /* FALLTHROUGH */
1.188     schwarze 2138:        case MDOC_Sq:
1.107     kristaps 2139:                print_text(h, "\\(oq");
                   2140:                break;
                   2141:        default:
                   2142:                abort();
                   2143:                /* NOTREACHED */
                   2144:        }
                   2145:
                   2146:        h->flags |= HTML_NOSPACE;
                   2147:        return(1);
                   2148: }
                   2149:
                   2150: static void
                   2151: mdoc_quote_post(MDOC_ARGS)
                   2152: {
                   2153:
1.213     schwarze 2154:        if (n->type != MDOC_BODY && n->type != MDOC_ELEM)
1.107     kristaps 2155:                return;
                   2156:
1.213     schwarze 2157:        if ( ! (n->tok == MDOC_En ||
                   2158:            (n->tok == MDOC_Eo && n->end == ENDBODY_SPACE)))
1.191     schwarze 2159:                h->flags |= HTML_NOSPACE;
1.107     kristaps 2160:
                   2161:        switch (n->tok) {
1.188     schwarze 2162:        case MDOC_Ao:
1.107     kristaps 2163:                /* FALLTHROUGH */
1.188     schwarze 2164:        case MDOC_Aq:
1.219   ! schwarze 2165:                print_text(h, n->nchild == 1 &&
        !          2166:                    n->child->tok == MDOC_Mt ?  ">" : "\\(ra");
1.107     kristaps 2167:                break;
1.188     schwarze 2168:        case MDOC_Bro:
1.107     kristaps 2169:                /* FALLTHROUGH */
1.188     schwarze 2170:        case MDOC_Brq:
1.107     kristaps 2171:                print_text(h, "\\(rC");
                   2172:                break;
1.188     schwarze 2173:        case MDOC_Oo:
1.107     kristaps 2174:                /* FALLTHROUGH */
1.188     schwarze 2175:        case MDOC_Op:
1.107     kristaps 2176:                /* FALLTHROUGH */
1.188     schwarze 2177:        case MDOC_Bo:
1.107     kristaps 2178:                /* FALLTHROUGH */
1.188     schwarze 2179:        case MDOC_Bq:
1.107     kristaps 2180:                print_text(h, "\\(rB");
1.191     schwarze 2181:                break;
                   2182:        case MDOC_En:
                   2183:                if (NULL != n->norm->Es &&
                   2184:                    NULL != n->norm->Es->child &&
                   2185:                    NULL != n->norm->Es->child->next) {
                   2186:                        h->flags |= HTML_NOSPACE;
                   2187:                        print_text(h, n->norm->Es->child->next->string);
                   2188:                }
1.182     schwarze 2189:                break;
1.188     schwarze 2190:        case MDOC_Eo:
1.107     kristaps 2191:                break;
1.188     schwarze 2192:        case MDOC_Qo:
1.107     kristaps 2193:                /* FALLTHROUGH */
1.188     schwarze 2194:        case MDOC_Qq:
1.107     kristaps 2195:                /* FALLTHROUGH */
1.188     schwarze 2196:        case MDOC_Do:
1.107     kristaps 2197:                /* FALLTHROUGH */
1.188     schwarze 2198:        case MDOC_Dq:
1.107     kristaps 2199:                print_text(h, "\\(rq");
                   2200:                break;
1.188     schwarze 2201:        case MDOC_Po:
1.107     kristaps 2202:                /* FALLTHROUGH */
1.188     schwarze 2203:        case MDOC_Pq:
1.107     kristaps 2204:                print_text(h, ")");
                   2205:                break;
1.188     schwarze 2206:        case MDOC_Ql:
1.107     kristaps 2207:                /* FALLTHROUGH */
1.188     schwarze 2208:        case MDOC_So:
1.107     kristaps 2209:                /* FALLTHROUGH */
1.188     schwarze 2210:        case MDOC_Sq:
1.183     schwarze 2211:                print_text(h, "\\(cq");
1.107     kristaps 2212:                break;
                   2213:        default:
                   2214:                abort();
                   2215:                /* NOTREACHED */
                   2216:        }
                   2217: }

CVSweb