Lines Matching refs:h
40 struct html *h
292 synopsis_pre(struct html *h, const struct mdoc_node *n) in synopsis_pre() argument
302 print_otag(h, TAG_BR, 0, NULL); in synopsis_pre()
316 print_otag(h, TAG_P, 0, NULL); in synopsis_pre()
320 print_otag(h, TAG_P, 0, NULL); in synopsis_pre()
325 print_otag(h, TAG_BR, 0, NULL); in synopsis_pre()
361 if ( ! (HTML_FRAGMENT & h->oflags)) { in print_mdoc()
362 print_gen_decls(h); in print_mdoc()
363 t = print_otag(h, TAG_HTML, 0, NULL); in print_mdoc()
364 tt = print_otag(h, TAG_HEAD, 0, NULL); in print_mdoc()
365 print_mdoc_head(meta, n, h); in print_mdoc()
366 print_tagq(h, tt); in print_mdoc()
367 print_otag(h, TAG_BODY, 0, NULL); in print_mdoc()
368 print_otag(h, TAG_DIV, 1, &tag); in print_mdoc()
370 t = print_otag(h, TAG_DIV, 1, &tag); in print_mdoc()
372 print_mdoc_nodelist(meta, n, h); in print_mdoc()
373 print_tagq(h, t); in print_mdoc()
382 print_gen_head(h); in print_mdoc_head()
383 bufinit(h); in print_mdoc_head()
384 bufcat_fmt(h, "%s(%s)", meta->title, meta->msec); in print_mdoc_head()
387 bufcat_fmt(h, " (%s)", meta->arch); in print_mdoc_head()
389 print_otag(h, TAG_TITLE, 0, NULL); in print_mdoc_head()
390 print_text(h, h->buf); in print_mdoc_head()
398 print_mdoc_node(meta, n, h); in print_mdoc_nodelist()
400 print_mdoc_nodelist(meta, n->next, h); in print_mdoc_nodelist()
411 t = h->tags.head; in print_mdoc_node()
415 child = mdoc_root_pre(meta, n, h); in print_mdoc_node()
419 assert(NULL == h->tblt); in print_mdoc_node()
426 if ( ! (HTML_LITERAL & h->flags)) in print_mdoc_node()
427 print_otag(h, TAG_BR, 0, NULL); in print_mdoc_node()
429 h->flags |= HTML_NOSPACE; in print_mdoc_node()
430 print_text(h, n->string); in print_mdoc_node()
432 h->flags |= HTML_NOSPACE; in print_mdoc_node()
435 print_eqn(h, n->eqn); in print_mdoc_node()
443 print_tbl(h, n->span); in print_mdoc_node()
451 if (h->tblt) { in print_mdoc_node()
452 print_tblclose(h); in print_mdoc_node()
453 t = h->tags.head; in print_mdoc_node()
456 assert(NULL == h->tblt); in print_mdoc_node()
458 child = (*mdocs[n->tok].pre)(meta, n, h); in print_mdoc_node()
462 if (HTML_KEEP & h->flags) { in print_mdoc_node()
465 h->flags &= ~HTML_KEEP; in print_mdoc_node()
466 h->flags |= HTML_PREKEEP; in print_mdoc_node()
471 print_mdoc_nodelist(meta, n->child, h); in print_mdoc_node()
473 print_stagq(h, t); in print_mdoc_node()
477 mdoc_root_post(meta, n, h); in print_mdoc_node()
483 (*mdocs[n->tok].post)(meta, n, h); in print_mdoc_node()
498 t = print_otag(h, TAG_TABLE, 3, tag); in mdoc_root_post()
500 print_otag(h, TAG_COL, 1, tag); in mdoc_root_post()
501 print_otag(h, TAG_COL, 1, tag); in mdoc_root_post()
503 print_otag(h, TAG_TBODY, 0, NULL); in mdoc_root_post()
505 tt = print_otag(h, TAG_TR, 0, NULL); in mdoc_root_post()
508 print_otag(h, TAG_TD, 1, tag); in mdoc_root_post()
509 print_text(h, meta->date); in mdoc_root_post()
510 print_stagq(h, tt); in mdoc_root_post()
514 print_otag(h, TAG_TD, 2, tag); in mdoc_root_post()
515 print_text(h, meta->os); in mdoc_root_post()
516 print_tagq(h, t); in mdoc_root_post()
541 t = print_otag(h, TAG_TABLE, 3, tag); in mdoc_root_pre()
543 print_otag(h, TAG_COL, 1, tag); in mdoc_root_pre()
544 print_otag(h, TAG_COL, 1, tag); in mdoc_root_pre()
545 print_otag(h, TAG_COL, 1, tag); in mdoc_root_pre()
547 print_otag(h, TAG_TBODY, 0, NULL); in mdoc_root_pre()
549 tt = print_otag(h, TAG_TR, 0, NULL); in mdoc_root_pre()
552 print_otag(h, TAG_TD, 1, tag); in mdoc_root_pre()
553 print_text(h, title); in mdoc_root_pre()
554 print_stagq(h, tt); in mdoc_root_pre()
558 print_otag(h, TAG_TD, 2, tag); in mdoc_root_pre()
559 print_text(h, b); in mdoc_root_pre()
560 print_stagq(h, tt); in mdoc_root_pre()
564 print_otag(h, TAG_TD, 2, tag); in mdoc_root_pre()
565 print_text(h, title); in mdoc_root_pre()
566 print_tagq(h, t); in mdoc_root_pre()
579 print_otag(h, TAG_DIV, 1, &tag); in mdoc_sh_pre()
584 bufinit(h); in mdoc_sh_pre()
585 bufcat(h, "x"); in mdoc_sh_pre()
588 bufcat_id(h, n->string); in mdoc_sh_pre()
590 bufcat_id(h, " "); in mdoc_sh_pre()
594 PAIR_ID_INIT(&tag, h->buf); in mdoc_sh_pre()
595 print_otag(h, TAG_H1, 1, &tag); in mdoc_sh_pre()
597 print_otag(h, TAG_H1, 0, NULL); in mdoc_sh_pre()
610 print_otag(h, TAG_DIV, 1, &tag); in mdoc_ss_pre()
615 bufinit(h); in mdoc_ss_pre()
616 bufcat(h, "x"); in mdoc_ss_pre()
619 bufcat_id(h, n->string); in mdoc_ss_pre()
621 bufcat_id(h, " "); in mdoc_ss_pre()
625 PAIR_ID_INIT(&tag, h->buf); in mdoc_ss_pre()
626 print_otag(h, TAG_H2, 1, &tag); in mdoc_ss_pre()
628 print_otag(h, TAG_H2, 0, NULL); in mdoc_ss_pre()
641 print_otag(h, TAG_B, 1, &tag); in mdoc_fl_pre()
648 print_text(h, "\\-"); in mdoc_fl_pre()
651 h->flags |= HTML_NOSPACE; in mdoc_fl_pre()
653 h->flags |= HTML_NOSPACE; in mdoc_fl_pre()
670 print_text(h, "\\(em"); in mdoc_nd_pre()
672 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_nd_pre()
686 synopsis_pre(h, n); in mdoc_nm_pre()
688 print_otag(h, TAG_B, 1, &tag); in mdoc_nm_pre()
690 print_text(h, meta->name); in mdoc_nm_pre()
693 print_otag(h, TAG_TD, 0, NULL); in mdoc_nm_pre()
695 print_text(h, meta->name); in mdoc_nm_pre()
698 print_otag(h, TAG_TD, 0, NULL); in mdoc_nm_pre()
704 synopsis_pre(h, n); in mdoc_nm_pre()
706 print_otag(h, TAG_TABLE, 1, &tag); in mdoc_nm_pre()
716 bufinit(h); in mdoc_nm_pre()
717 bufcat_su(h, "width", &su); in mdoc_nm_pre()
718 PAIR_STYLE_INIT(&tag, h); in mdoc_nm_pre()
719 print_otag(h, TAG_COL, 1, &tag); in mdoc_nm_pre()
720 print_otag(h, TAG_COL, 0, NULL); in mdoc_nm_pre()
721 print_otag(h, TAG_TBODY, 0, NULL); in mdoc_nm_pre()
722 print_otag(h, TAG_TR, 0, NULL); in mdoc_nm_pre()
738 if (h->base_man) { in mdoc_xr_pre()
739 buffmt_man(h, n->child->string, in mdoc_xr_pre()
742 PAIR_HREF_INIT(&tag[1], h->buf); in mdoc_xr_pre()
743 print_otag(h, TAG_A, 2, tag); in mdoc_xr_pre()
745 print_otag(h, TAG_A, 1, tag); in mdoc_xr_pre()
748 print_text(h, n->string); in mdoc_xr_pre()
753 h->flags |= HTML_NOSPACE; in mdoc_xr_pre()
754 print_text(h, "("); in mdoc_xr_pre()
755 h->flags |= HTML_NOSPACE; in mdoc_xr_pre()
756 print_text(h, n->string); in mdoc_xr_pre()
757 h->flags |= HTML_NOSPACE; in mdoc_xr_pre()
758 print_text(h, ")"); in mdoc_xr_pre()
769 h->flags |= HTML_NOSPACE; in mdoc_ns_pre()
781 print_otag(h, TAG_I, 1, &tag); in mdoc_ar_pre()
818 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_xx_pre()
820 print_text(h, pp); in mdoc_xx_pre()
822 flags = h->flags; in mdoc_xx_pre()
823 h->flags |= HTML_KEEP; in mdoc_xx_pre()
824 print_text(h, n->child->string); in mdoc_xx_pre()
825 h->flags = flags; in mdoc_xx_pre()
838 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_bx_pre()
841 print_text(h, n->string); in mdoc_bx_pre()
842 h->flags |= HTML_NOSPACE; in mdoc_bx_pre()
843 print_text(h, "BSD"); in mdoc_bx_pre()
845 print_text(h, "BSD"); in mdoc_bx_pre()
850 h->flags |= HTML_NOSPACE; in mdoc_bx_pre()
851 print_text(h, "-"); in mdoc_bx_pre()
852 h->flags |= HTML_NOSPACE; in mdoc_bx_pre()
853 print_text(h, n->string); in mdoc_bx_pre()
879 bufinit(h); in mdoc_it_pre()
903 bufcat_su(h, "margin-top", &su); in mdoc_it_pre()
904 PAIR_STYLE_INIT(&tag[1], h); in mdoc_it_pre()
905 print_otag(h, TAG_DT, 2, tag); in mdoc_it_pre()
909 print_otag(h, TAG_B, 1, tag); in mdoc_it_pre()
928 bufcat_su(h, "margin-top", &su); in mdoc_it_pre()
929 PAIR_STYLE_INIT(&tag[1], h); in mdoc_it_pre()
930 print_otag(h, TAG_LI, 2, tag); in mdoc_it_pre()
942 print_otag(h, TAG_DD, 1, tag); in mdoc_it_pre()
946 bufcat_su(h, "margin-left", &su); in mdoc_it_pre()
947 PAIR_STYLE_INIT(&tag[1], h); in mdoc_it_pre()
948 print_otag(h, TAG_DD, 2, tag); in mdoc_it_pre()
952 bufcat_su(h, "margin-top", &su); in mdoc_it_pre()
953 PAIR_STYLE_INIT(&tag[1], h); in mdoc_it_pre()
954 print_otag(h, TAG_TD, 2, tag); in mdoc_it_pre()
962 print_otag(h, TAG_TR, 1, tag); in mdoc_it_pre()
983 print_otag(h, TAG_TBODY, 0, NULL); in mdoc_bl_pre()
999 bufinit(h); in mdoc_bl_pre()
1002 bufcat_su(h, "width", &su); in mdoc_bl_pre()
1004 bufcat_su(h, "min-width", &su); in mdoc_bl_pre()
1005 PAIR_STYLE_INIT(&tag[0], h); in mdoc_bl_pre()
1006 print_otag(h, TAG_COL, 1, tag); in mdoc_bl_pre()
1013 bufinit(h); in mdoc_bl_pre()
1014 bufcat_su(h, "margin-top", &su); in mdoc_bl_pre()
1015 bufcat_su(h, "margin-bottom", &su); in mdoc_bl_pre()
1016 PAIR_STYLE_INIT(&tag[0], h); in mdoc_bl_pre()
1027 bufcat_su(h, "margin-left", &su); in mdoc_bl_pre()
1038 print_otag(h, TAG_UL, 2, tag); in mdoc_bl_pre()
1041 print_otag(h, TAG_OL, 2, tag); in mdoc_bl_pre()
1052 print_otag(h, TAG_DL, 2, tag); in mdoc_bl_pre()
1055 print_otag(h, TAG_TABLE, 2, tag); in mdoc_bl_pre()
1074 print_otag(h, TAG_BR, 0, NULL); in mdoc_ex_pre()
1078 print_text(h, "The"); in mdoc_ex_pre()
1084 t = print_otag(h, TAG_B, 1, &tag); in mdoc_ex_pre()
1085 print_text(h, n->string); in mdoc_ex_pre()
1086 print_tagq(h, t); in mdoc_ex_pre()
1089 h->flags |= HTML_NOSPACE; in mdoc_ex_pre()
1090 print_text(h, ","); in mdoc_ex_pre()
1094 print_text(h, "and"); in mdoc_ex_pre()
1098 print_text(h, "utilities exit"); in mdoc_ex_pre()
1100 print_text(h, "utility exits"); in mdoc_ex_pre()
1102 print_text(h, "0 on success, and >0 if an error occurs."); in mdoc_ex_pre()
1114 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_em_pre()
1130 bufinit(h); in mdoc_d1_pre()
1131 bufcat_su(h, "margin-top", &su); in mdoc_d1_pre()
1132 bufcat_su(h, "margin-bottom", &su); in mdoc_d1_pre()
1133 PAIR_STYLE_INIT(&tag[0], h); in mdoc_d1_pre()
1134 print_otag(h, TAG_BLOCKQUOTE, 1, tag); in mdoc_d1_pre()
1139 print_otag(h, TAG_DIV, 1, tag); in mdoc_d1_pre()
1143 print_otag(h, TAG_CODE, 1, tag); in mdoc_d1_pre()
1156 bufinit(h); in mdoc_sx_pre()
1157 bufcat(h, "#x"); in mdoc_sx_pre()
1160 bufcat_id(h, n->string); in mdoc_sx_pre()
1162 bufcat_id(h, " "); in mdoc_sx_pre()
1166 PAIR_HREF_INIT(&tag[1], h->buf); in mdoc_sx_pre()
1168 print_otag(h, TAG_I, 1, tag); in mdoc_sx_pre()
1169 print_otag(h, TAG_A, 2, tag); in mdoc_sx_pre()
1197 print_otag(h, TAG_P, 0, NULL); in mdoc_bd_pre()
1205 bufinit(h); in mdoc_bd_pre()
1206 bufcat_su(h, "margin-left", &su); in mdoc_bd_pre()
1207 PAIR_STYLE_INIT(&tag[0], h); in mdoc_bd_pre()
1212 print_otag(h, TAG_DIV, 2, tag); in mdoc_bd_pre()
1217 print_otag(h, TAG_PRE, 2, tag); in mdoc_bd_pre()
1221 sv = h->flags & HTML_LITERAL; in mdoc_bd_pre()
1222 h->flags |= HTML_LITERAL; in mdoc_bd_pre()
1225 print_mdoc_node(meta, nn, h); in mdoc_bd_pre()
1255 print_text(h, "\n"); in mdoc_bd_pre()
1257 h->flags |= HTML_NOSPACE; in mdoc_bd_pre()
1261 h->flags &= ~HTML_LITERAL; in mdoc_bd_pre()
1274 print_otag(h, TAG_I, 1, &tag); in mdoc_pa_pre()
1286 print_otag(h, TAG_I, 1, &tag); in mdoc_ad_pre()
1300 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_an_pre()
1311 synopsis_pre(h, n); in mdoc_cd_pre()
1313 print_otag(h, TAG_B, 1, &tag); in mdoc_cd_pre()
1325 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_dv_pre()
1337 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_ev_pre()
1349 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_er_pre()
1364 print_otag(h, TAG_I, 1, &tag); in mdoc_fa_pre()
1369 t = print_otag(h, TAG_I, 1, &tag); in mdoc_fa_pre()
1370 print_text(h, nn->string); in mdoc_fa_pre()
1371 print_tagq(h, t); in mdoc_fa_pre()
1373 h->flags |= HTML_NOSPACE; in mdoc_fa_pre()
1374 print_text(h, ","); in mdoc_fa_pre()
1379 h->flags |= HTML_NOSPACE; in mdoc_fa_pre()
1380 print_text(h, ","); in mdoc_fa_pre()
1397 synopsis_pre(h, n); in mdoc_fd_pre()
1406 print_otag(h, TAG_B, 1, tag); in mdoc_fd_pre()
1411 print_otag(h, TAG_B, 1, tag); in mdoc_fd_pre()
1412 print_text(h, n->string); in mdoc_fd_pre()
1426 if (h->base_includes) { in mdoc_fd_pre()
1427 buffmt_includes(h, buf); in mdoc_fd_pre()
1428 PAIR_HREF_INIT(&tag[i], h->buf); in mdoc_fd_pre()
1432 t = print_otag(h, TAG_A, i, tag); in mdoc_fd_pre()
1433 print_text(h, n->string); in mdoc_fd_pre()
1434 print_tagq(h, t); in mdoc_fd_pre()
1441 print_text(h, n->string); in mdoc_fd_pre()
1455 synopsis_pre(h, n); in mdoc_vt_pre()
1458 synopsis_pre(h, n); in mdoc_vt_pre()
1463 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_vt_pre()
1474 synopsis_pre(h, n); in mdoc_ft_pre()
1476 print_otag(h, TAG_I, 1, &tag); in mdoc_ft_pre()
1492 synopsis_pre(h, n); in mdoc_fn_pre()
1501 t = print_otag(h, TAG_I, 1, tag); in mdoc_fn_pre()
1507 print_text(h, nbuf); in mdoc_fn_pre()
1511 print_tagq(h, t); in mdoc_fn_pre()
1532 t = print_otag(h, TAG_B, 1, tag); in mdoc_fn_pre()
1536 print_text(h, nbuf); in mdoc_fn_pre()
1539 print_tagq(h, t); in mdoc_fn_pre()
1541 h->flags |= HTML_NOSPACE; in mdoc_fn_pre()
1542 print_text(h, "("); in mdoc_fn_pre()
1543 h->flags |= HTML_NOSPACE; in mdoc_fn_pre()
1546 bufinit(h); in mdoc_fn_pre()
1547 bufcat_style(h, "white-space", "nowrap"); in mdoc_fn_pre()
1548 PAIR_STYLE_INIT(&tag[1], h); in mdoc_fn_pre()
1554 t = print_otag(h, TAG_I, i, tag); in mdoc_fn_pre()
1555 print_text(h, n->string); in mdoc_fn_pre()
1556 print_tagq(h, t); in mdoc_fn_pre()
1558 h->flags |= HTML_NOSPACE; in mdoc_fn_pre()
1559 print_text(h, ","); in mdoc_fn_pre()
1563 h->flags |= HTML_NOSPACE; in mdoc_fn_pre()
1564 print_text(h, ")"); in mdoc_fn_pre()
1567 h->flags |= HTML_NOSPACE; in mdoc_fn_pre()
1568 print_text(h, ";"); in mdoc_fn_pre()
1592 h->flags &= ~HTML_NOSPACE; in mdoc_sm_pre()
1593 h->flags &= ~HTML_NONOSPACE; in mdoc_sm_pre()
1595 h->flags |= HTML_NONOSPACE; in mdoc_sm_pre()
1605 print_otag(h, TAG_P, 0, NULL); in mdoc_pp_pre()
1626 bufinit(h); in mdoc_sp_pre()
1627 bufcat_su(h, "height", &su); in mdoc_sp_pre()
1628 PAIR_STYLE_INIT(&tag, h); in mdoc_sp_pre()
1629 print_otag(h, TAG_DIV, 1, &tag); in mdoc_sp_pre()
1632 print_text(h, "\\~"); in mdoc_sp_pre()
1652 print_otag(h, TAG_A, 2, tag); in mdoc_lk_pre()
1655 print_text(h, n->string); in mdoc_lk_pre()
1658 print_text(h, n->string); in mdoc_lk_pre()
1676 bufinit(h); in mdoc_mt_pre()
1677 bufcat(h, "mailto:"); in mdoc_mt_pre()
1678 bufcat(h, n->string); in mdoc_mt_pre()
1680 PAIR_HREF_INIT(&tag[1], h->buf); in mdoc_mt_pre()
1681 t = print_otag(h, TAG_A, 2, tag); in mdoc_mt_pre()
1682 print_text(h, n->string); in mdoc_mt_pre()
1683 print_tagq(h, t); in mdoc_mt_pre()
1698 h->flags |= HTML_NOSPACE; in mdoc_fo_pre()
1699 print_text(h, "("); in mdoc_fo_pre()
1700 h->flags |= HTML_NOSPACE; in mdoc_fo_pre()
1703 synopsis_pre(h, n); in mdoc_fo_pre()
1713 t = print_otag(h, TAG_B, 1, &tag); in mdoc_fo_pre()
1714 print_text(h, n->child->string); in mdoc_fo_pre()
1715 print_tagq(h, t); in mdoc_fo_pre()
1727 h->flags |= HTML_NOSPACE; in mdoc_fo_post()
1728 print_text(h, ")"); in mdoc_fo_post()
1729 h->flags |= HTML_NOSPACE; in mdoc_fo_post()
1730 print_text(h, ";"); in mdoc_fo_post()
1742 synopsis_pre(h, n); in mdoc_in_pre()
1745 print_otag(h, TAG_B, 1, tag); in mdoc_in_pre()
1755 print_text(h, "#include"); in mdoc_in_pre()
1757 print_text(h, "<"); in mdoc_in_pre()
1758 h->flags |= HTML_NOSPACE; in mdoc_in_pre()
1766 if (h->base_includes) { in mdoc_in_pre()
1767 buffmt_includes(h, n->string); in mdoc_in_pre()
1768 PAIR_HREF_INIT(&tag[i], h->buf); in mdoc_in_pre()
1772 t = print_otag(h, TAG_A, i, tag); in mdoc_in_pre()
1773 print_text(h, n->string); in mdoc_in_pre()
1774 print_tagq(h, t); in mdoc_in_pre()
1779 h->flags |= HTML_NOSPACE; in mdoc_in_pre()
1780 print_text(h, ">"); in mdoc_in_pre()
1784 print_text(h, n->string); in mdoc_in_pre()
1798 print_otag(h, TAG_B, 1, &tag); in mdoc_ic_pre()
1812 print_otag(h, TAG_BR, 0, NULL); in mdoc_rv_pre()
1816 print_text(h, "The"); in mdoc_rv_pre()
1822 t = print_otag(h, TAG_B, 1, &tag); in mdoc_rv_pre()
1823 print_text(h, n->string); in mdoc_rv_pre()
1824 print_tagq(h, t); in mdoc_rv_pre()
1826 h->flags |= HTML_NOSPACE; in mdoc_rv_pre()
1827 print_text(h, "()"); in mdoc_rv_pre()
1830 h->flags |= HTML_NOSPACE; in mdoc_rv_pre()
1831 print_text(h, ","); in mdoc_rv_pre()
1835 print_text(h, "and"); in mdoc_rv_pre()
1839 print_text(h, "functions return"); in mdoc_rv_pre()
1841 print_text(h, "function returns"); in mdoc_rv_pre()
1843 print_text(h, "the value 0 if successful; otherwise the value " in mdoc_rv_pre()
1847 t = print_otag(h, TAG_B, 1, &tag); in mdoc_rv_pre()
1848 print_text(h, "errno"); in mdoc_rv_pre()
1849 print_tagq(h, t); in mdoc_rv_pre()
1850 print_text(h, "is set to indicate the error."); in mdoc_rv_pre()
1862 print_otag(h, TAG_B, 1, &tag); in mdoc_va_pre()
1872 h->flags |= HTML_NOSPACE; in mdoc_ap_pre()
1873 print_text(h, "\\(aq"); in mdoc_ap_pre()
1874 h->flags |= HTML_NOSPACE; in mdoc_ap_pre()
1904 bufinit(h); in mdoc_bf_pre()
1905 bufcat_style(h, "display", "inline"); in mdoc_bf_pre()
1908 bufcat_su(h, "margin-left", &su); in mdoc_bf_pre()
1909 PAIR_STYLE_INIT(&tag[1], h); in mdoc_bf_pre()
1910 print_otag(h, TAG_DIV, 2, tag); in mdoc_bf_pre()
1922 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_ms_pre()
1932 h->flags |= HTML_IGNDELIM; in mdoc_igndelim_pre()
1942 h->flags |= HTML_NOSPACE; in mdoc_pf_post()
1956 print_otag(h, TAG_P, 0, NULL); in mdoc_rs_pre()
1959 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_rs_pre()
1972 print_otag(h, TAG_CODE, 1, &tag); in mdoc_li_pre()
1984 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_sy_pre()
1994 print_text(h, "is currently in beta test."); in mdoc_bt_pre()
2004 print_text(h, "currently under development."); in mdoc_ud_pre()
2016 print_otag(h, TAG_BR, 0, NULL); in mdoc_lb_pre()
2019 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_lb_pre()
2038 print_text(h, "and"); in mdoc__x_pre()
2088 print_otag(h, t, 1, tag); in mdoc__x_pre()
2093 print_otag(h, TAG_A, 2, tag); in mdoc__x_pre()
2114 h->flags |= HTML_NOSPACE; in mdoc__x_post()
2115 print_text(h, n->next ? "," : "."); in mdoc__x_post()
2131 h->flags |= HTML_PREKEEP; in mdoc_bk_pre()
2148 h->flags &= ~(HTML_KEEP | HTML_PREKEEP); in mdoc_bk_post()
2165 print_text(h, "\\(la"); in mdoc_quote_pre()
2170 print_text(h, "\\(lC"); in mdoc_quote_pre()
2175 print_text(h, "\\(lB"); in mdoc_quote_pre()
2180 print_text(h, "\\(lB"); in mdoc_quote_pre()
2181 h->flags |= HTML_NOSPACE; in mdoc_quote_pre()
2183 print_otag(h, TAG_SPAN, 1, &tag); in mdoc_quote_pre()
2194 print_text(h, "\\(lq"); in mdoc_quote_pre()
2199 print_text(h, "("); in mdoc_quote_pre()
2202 print_text(h, "\\(oq"); in mdoc_quote_pre()
2203 h->flags |= HTML_NOSPACE; in mdoc_quote_pre()
2205 print_otag(h, TAG_CODE, 1, &tag); in mdoc_quote_pre()
2210 print_text(h, "\\(oq"); in mdoc_quote_pre()
2217 h->flags |= HTML_NOSPACE; in mdoc_quote_pre()
2230 h->flags |= HTML_NOSPACE; in mdoc_quote_post()
2236 print_text(h, "\\(ra"); in mdoc_quote_post()
2241 print_text(h, "\\(rC"); in mdoc_quote_post()
2250 print_text(h, "\\(rB"); in mdoc_quote_post()
2261 print_text(h, "\\(rq"); in mdoc_quote_post()
2266 print_text(h, ")"); in mdoc_quote_post()
2273 print_text(h, "\\(cq"); in mdoc_quote_post()