version 1.4, 2009/09/24 09:20:02 |
version 1.345, 2022/07/03 14:29:45 |
|
|
/* $Id$ */ |
/* $Id$ */ |
/* |
/* |
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> |
* Copyright (c) 2014-2022 Ingo Schwarze <schwarze@openbsd.org> |
|
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> |
|
* Copyright (c) 2022 Anna Vyalkova <cyber@sysrq.in> |
* |
* |
* Permission to use, copy, modify, and distribute this software for any |
* Permission to use, copy, modify, and distribute this software for any |
* purpose with or without fee is hereby granted, provided that the above |
* purpose with or without fee is hereby granted, provided that the above |
* copyright notice and this permission notice appear in all copies. |
* copyright notice and this permission notice appear in all copies. |
* |
* |
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES |
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR |
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
|
* |
|
* HTML formatter for mdoc(7) used by mandoc(1). |
*/ |
*/ |
|
#include "config.h" |
|
|
#include <sys/types.h> |
#include <sys/types.h> |
#include <sys/queue.h> |
|
|
|
#include <assert.h> |
#include <assert.h> |
#include <ctype.h> |
#include <ctype.h> |
#include <err.h> |
|
#include <stdio.h> |
#include <stdio.h> |
#include <stdlib.h> |
#include <stdlib.h> |
#include <string.h> |
#include <string.h> |
#include <unistd.h> |
#include <unistd.h> |
|
|
#include "html.h" |
#include "mandoc_aux.h" |
|
#include "mandoc.h" |
|
#include "roff.h" |
#include "mdoc.h" |
#include "mdoc.h" |
|
#include "out.h" |
|
#include "html.h" |
|
#include "main.h" |
|
|
#define INDENT 5 |
#define MDOC_ARGS const struct roff_meta *meta, \ |
#define HALFINDENT 3 |
struct roff_node *n, \ |
|
|
#define MDOC_ARGS const struct mdoc_meta *m, \ |
|
const struct mdoc_node *n, \ |
|
struct html *h |
struct html *h |
#define MAN_ARGS const struct man_meta *m, \ |
|
const struct man_node *n, \ |
|
struct html *h |
|
|
|
struct htmlmdoc { |
#ifndef MIN |
|
#define MIN(a,b) ((/*CONSTCOND*/(a)<(b))?(a):(b)) |
|
#endif |
|
|
|
struct mdoc_html_act { |
int (*pre)(MDOC_ARGS); |
int (*pre)(MDOC_ARGS); |
void (*post)(MDOC_ARGS); |
void (*post)(MDOC_ARGS); |
}; |
}; |
|
|
static void print_mdoc(MDOC_ARGS); |
static void print_mdoc_head(const struct roff_meta *, |
static void print_mdoc_head(MDOC_ARGS); |
struct html *); |
static void print_mdoc_node(MDOC_ARGS); |
static void print_mdoc_node(MDOC_ARGS); |
static void print_mdoc_nodelist(MDOC_ARGS); |
static void print_mdoc_nodelist(MDOC_ARGS); |
|
static void synopsis_pre(struct html *, struct roff_node *); |
|
|
static int a2width(const char *); |
static void mdoc_root_post(const struct roff_meta *, |
static int a2offs(const char *); |
struct html *); |
static int a2list(const struct mdoc_node *); |
static int mdoc_root_pre(const struct roff_meta *, |
|
struct html *); |
|
|
static void mdoc_root_post(MDOC_ARGS); |
static void mdoc__x_post(MDOC_ARGS); |
static int mdoc_root_pre(MDOC_ARGS); |
static int mdoc__x_pre(MDOC_ARGS); |
static int mdoc_tbl_pre(MDOC_ARGS, int); |
static int mdoc_abort_pre(MDOC_ARGS); |
static int mdoc_tbl_block_pre(MDOC_ARGS, int, int, int, int); |
|
static int mdoc_tbl_body_pre(MDOC_ARGS, int, int); |
|
static int mdoc_tbl_head_pre(MDOC_ARGS, int, int); |
|
|
|
static int mdoc_ad_pre(MDOC_ARGS); |
static int mdoc_ad_pre(MDOC_ARGS); |
static int mdoc_an_pre(MDOC_ARGS); |
static int mdoc_an_pre(MDOC_ARGS); |
static void mdoc_aq_post(MDOC_ARGS); |
static int mdoc_ap_pre(MDOC_ARGS); |
static int mdoc_aq_pre(MDOC_ARGS); |
|
static int mdoc_ar_pre(MDOC_ARGS); |
static int mdoc_ar_pre(MDOC_ARGS); |
static int mdoc_bd_pre(MDOC_ARGS); |
static int mdoc_bd_pre(MDOC_ARGS); |
static void mdoc_bl_post(MDOC_ARGS); |
static int mdoc_bf_pre(MDOC_ARGS); |
|
static void mdoc_bk_post(MDOC_ARGS); |
|
static int mdoc_bk_pre(MDOC_ARGS); |
static int mdoc_bl_pre(MDOC_ARGS); |
static int mdoc_bl_pre(MDOC_ARGS); |
static void mdoc_bq_post(MDOC_ARGS); |
|
static int mdoc_bq_pre(MDOC_ARGS); |
|
static void mdoc_brq_post(MDOC_ARGS); |
|
static int mdoc_brq_pre(MDOC_ARGS); |
|
static int mdoc_bx_pre(MDOC_ARGS); |
|
static int mdoc_cd_pre(MDOC_ARGS); |
static int mdoc_cd_pre(MDOC_ARGS); |
|
static int mdoc_code_pre(MDOC_ARGS); |
static int mdoc_d1_pre(MDOC_ARGS); |
static int mdoc_d1_pre(MDOC_ARGS); |
static void mdoc_dq_post(MDOC_ARGS); |
|
static int mdoc_dq_pre(MDOC_ARGS); |
|
static int mdoc_dv_pre(MDOC_ARGS); |
|
static int mdoc_fa_pre(MDOC_ARGS); |
static int mdoc_fa_pre(MDOC_ARGS); |
static int mdoc_fd_pre(MDOC_ARGS); |
static int mdoc_fd_pre(MDOC_ARGS); |
static int mdoc_fl_pre(MDOC_ARGS); |
static int mdoc_fl_pre(MDOC_ARGS); |
static int mdoc_fn_pre(MDOC_ARGS); |
static int mdoc_fn_pre(MDOC_ARGS); |
static int mdoc_ft_pre(MDOC_ARGS); |
static int mdoc_ft_pre(MDOC_ARGS); |
static int mdoc_em_pre(MDOC_ARGS); |
static int mdoc_em_pre(MDOC_ARGS); |
static int mdoc_er_pre(MDOC_ARGS); |
static void mdoc_eo_post(MDOC_ARGS); |
static int mdoc_ev_pre(MDOC_ARGS); |
static int mdoc_eo_pre(MDOC_ARGS); |
static int mdoc_ex_pre(MDOC_ARGS); |
static int mdoc_ex_pre(MDOC_ARGS); |
static void mdoc_fo_post(MDOC_ARGS); |
static void mdoc_fo_post(MDOC_ARGS); |
static int mdoc_fo_pre(MDOC_ARGS); |
static int mdoc_fo_pre(MDOC_ARGS); |
static int mdoc_ic_pre(MDOC_ARGS); |
static int mdoc_igndelim_pre(MDOC_ARGS); |
static int mdoc_in_pre(MDOC_ARGS); |
static int mdoc_in_pre(MDOC_ARGS); |
static int mdoc_it_pre(MDOC_ARGS); |
static int mdoc_it_pre(MDOC_ARGS); |
|
static int mdoc_lb_pre(MDOC_ARGS); |
static int mdoc_lk_pre(MDOC_ARGS); |
static int mdoc_lk_pre(MDOC_ARGS); |
static int mdoc_mt_pre(MDOC_ARGS); |
static int mdoc_mt_pre(MDOC_ARGS); |
static int mdoc_nd_pre(MDOC_ARGS); |
static int mdoc_nd_pre(MDOC_ARGS); |
static int mdoc_nm_pre(MDOC_ARGS); |
static int mdoc_nm_pre(MDOC_ARGS); |
|
static int mdoc_no_pre(MDOC_ARGS); |
static int mdoc_ns_pre(MDOC_ARGS); |
static int mdoc_ns_pre(MDOC_ARGS); |
static void mdoc_op_post(MDOC_ARGS); |
|
static int mdoc_op_pre(MDOC_ARGS); |
|
static int mdoc_pa_pre(MDOC_ARGS); |
static int mdoc_pa_pre(MDOC_ARGS); |
static void mdoc_pq_post(MDOC_ARGS); |
static void mdoc_pf_post(MDOC_ARGS); |
static int mdoc_pq_pre(MDOC_ARGS); |
static int mdoc_pp_pre(MDOC_ARGS); |
static void mdoc_qq_post(MDOC_ARGS); |
static void mdoc_quote_post(MDOC_ARGS); |
static int mdoc_qq_pre(MDOC_ARGS); |
static int mdoc_quote_pre(MDOC_ARGS); |
static int mdoc_rv_pre(MDOC_ARGS); |
static int mdoc_rs_pre(MDOC_ARGS); |
static int mdoc_sh_pre(MDOC_ARGS); |
static int mdoc_sh_pre(MDOC_ARGS); |
static int mdoc_sp_pre(MDOC_ARGS); |
static int mdoc_skip_pre(MDOC_ARGS); |
static void mdoc_sq_post(MDOC_ARGS); |
static int mdoc_sm_pre(MDOC_ARGS); |
static int mdoc_sq_pre(MDOC_ARGS); |
|
static int mdoc_ss_pre(MDOC_ARGS); |
static int mdoc_ss_pre(MDOC_ARGS); |
|
static int mdoc_st_pre(MDOC_ARGS); |
static int mdoc_sx_pre(MDOC_ARGS); |
static int mdoc_sx_pre(MDOC_ARGS); |
|
static int mdoc_sy_pre(MDOC_ARGS); |
|
static int mdoc_tg_pre(MDOC_ARGS); |
static int mdoc_va_pre(MDOC_ARGS); |
static int mdoc_va_pre(MDOC_ARGS); |
static int mdoc_vt_pre(MDOC_ARGS); |
static int mdoc_vt_pre(MDOC_ARGS); |
static int mdoc_xr_pre(MDOC_ARGS); |
static int mdoc_xr_pre(MDOC_ARGS); |
static int mdoc_xx_pre(MDOC_ARGS); |
static int mdoc_xx_pre(MDOC_ARGS); |
|
|
#ifdef __linux__ |
static const struct mdoc_html_act mdoc_html_acts[MDOC_MAX - MDOC_Dd] = { |
extern size_t strlcpy(char *, const char *, size_t); |
|
extern size_t strlcat(char *, const char *, size_t); |
|
#endif |
|
|
|
static const struct htmlmdoc mdocs[MDOC_MAX] = { |
|
{NULL, NULL}, /* Ap */ |
|
{NULL, NULL}, /* Dd */ |
{NULL, NULL}, /* Dd */ |
{NULL, NULL}, /* Dt */ |
{NULL, NULL}, /* Dt */ |
{NULL, NULL}, /* Os */ |
{NULL, NULL}, /* Os */ |
{mdoc_sh_pre, NULL }, /* Sh */ |
{mdoc_sh_pre, NULL }, /* Sh */ |
{mdoc_ss_pre, NULL }, /* Ss */ |
{mdoc_ss_pre, NULL }, /* Ss */ |
{mdoc_sp_pre, NULL}, /* Pp */ |
{mdoc_pp_pre, NULL}, /* Pp */ |
{mdoc_d1_pre, NULL}, /* D1 */ |
{mdoc_d1_pre, NULL}, /* D1 */ |
{mdoc_d1_pre, NULL}, /* Dl */ |
{mdoc_d1_pre, NULL}, /* Dl */ |
{mdoc_bd_pre, NULL}, /* Bd */ |
{mdoc_bd_pre, NULL}, /* Bd */ |
{NULL, NULL}, /* Ed */ |
{NULL, NULL}, /* Ed */ |
{mdoc_bl_pre, mdoc_bl_post}, /* Bl */ |
{mdoc_bl_pre, NULL}, /* Bl */ |
{NULL, NULL}, /* El */ |
{NULL, NULL}, /* El */ |
{mdoc_it_pre, NULL}, /* It */ |
{mdoc_it_pre, NULL}, /* It */ |
{mdoc_ad_pre, NULL}, /* Ad */ |
{mdoc_ad_pre, NULL}, /* Ad */ |
{mdoc_an_pre, NULL}, /* An */ |
{mdoc_an_pre, NULL}, /* An */ |
|
{mdoc_ap_pre, NULL}, /* Ap */ |
{mdoc_ar_pre, NULL}, /* Ar */ |
{mdoc_ar_pre, NULL}, /* Ar */ |
{mdoc_cd_pre, NULL}, /* Cd */ |
{mdoc_cd_pre, NULL}, /* Cd */ |
{mdoc_fl_pre, NULL}, /* Cm */ |
{mdoc_code_pre, NULL}, /* Cm */ |
{mdoc_dv_pre, NULL}, /* Dv */ |
{mdoc_code_pre, NULL}, /* Dv */ |
{mdoc_er_pre, NULL}, /* Er */ |
{mdoc_code_pre, NULL}, /* Er */ |
{mdoc_ev_pre, NULL}, /* Ev */ |
{mdoc_code_pre, NULL}, /* Ev */ |
{mdoc_ex_pre, NULL}, /* Ex */ |
{mdoc_ex_pre, NULL}, /* Ex */ |
{mdoc_fa_pre, NULL}, /* Fa */ |
{mdoc_fa_pre, NULL}, /* Fa */ |
{mdoc_fd_pre, NULL}, /* Fd */ |
{mdoc_fd_pre, NULL}, /* Fd */ |
{mdoc_fl_pre, NULL}, /* Fl */ |
{mdoc_fl_pre, NULL}, /* Fl */ |
{mdoc_fn_pre, NULL}, /* Fn */ |
{mdoc_fn_pre, NULL}, /* Fn */ |
{mdoc_ft_pre, NULL}, /* Ft */ |
{mdoc_ft_pre, NULL}, /* Ft */ |
{mdoc_ic_pre, NULL}, /* Ic */ |
{mdoc_code_pre, NULL}, /* Ic */ |
{mdoc_in_pre, NULL}, /* In */ |
{mdoc_in_pre, NULL}, /* In */ |
{NULL, NULL}, /* Li */ |
{mdoc_code_pre, NULL}, /* Li */ |
{mdoc_nd_pre, NULL}, /* Nd */ |
{mdoc_nd_pre, NULL}, /* Nd */ |
{mdoc_nm_pre, NULL}, /* Nm */ |
{mdoc_nm_pre, NULL}, /* Nm */ |
{mdoc_op_pre, mdoc_op_post}, /* Op */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Op */ |
{NULL, NULL}, /* Ot */ |
{mdoc_abort_pre, NULL}, /* Ot */ |
{mdoc_pa_pre, NULL}, /* Pa */ |
{mdoc_pa_pre, NULL}, /* Pa */ |
{mdoc_rv_pre, NULL}, /* Rv */ |
{mdoc_ex_pre, NULL}, /* Rv */ |
{NULL, NULL}, /* St */ |
{mdoc_st_pre, NULL}, /* St */ |
{mdoc_va_pre, NULL}, /* Va */ |
{mdoc_va_pre, NULL}, /* Va */ |
{mdoc_vt_pre, NULL}, /* Vt */ |
{mdoc_vt_pre, NULL}, /* Vt */ |
{mdoc_xr_pre, NULL}, /* Xr */ |
{mdoc_xr_pre, NULL}, /* Xr */ |
{NULL, NULL}, /* %A */ |
{mdoc__x_pre, mdoc__x_post}, /* %A */ |
{NULL, NULL}, /* %B */ |
{mdoc__x_pre, mdoc__x_post}, /* %B */ |
{NULL, NULL}, /* %D */ |
{mdoc__x_pre, mdoc__x_post}, /* %D */ |
{NULL, NULL}, /* %I */ |
{mdoc__x_pre, mdoc__x_post}, /* %I */ |
{NULL, NULL}, /* %J */ |
{mdoc__x_pre, mdoc__x_post}, /* %J */ |
{NULL, NULL}, /* %N */ |
{mdoc__x_pre, mdoc__x_post}, /* %N */ |
{NULL, NULL}, /* %O */ |
{mdoc__x_pre, mdoc__x_post}, /* %O */ |
{NULL, NULL}, /* %P */ |
{mdoc__x_pre, mdoc__x_post}, /* %P */ |
{NULL, NULL}, /* %R */ |
{mdoc__x_pre, mdoc__x_post}, /* %R */ |
{NULL, NULL}, /* %T */ |
{mdoc__x_pre, mdoc__x_post}, /* %T */ |
{NULL, NULL}, /* %V */ |
{mdoc__x_pre, mdoc__x_post}, /* %V */ |
{NULL, NULL}, /* Ac */ |
{NULL, NULL}, /* Ac */ |
{mdoc_aq_pre, mdoc_aq_post}, /* Ao */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Ao */ |
{mdoc_aq_pre, mdoc_aq_post}, /* Aq */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Aq */ |
{NULL, NULL}, /* At */ |
{mdoc_xx_pre, NULL}, /* At */ |
{NULL, NULL}, /* Bc */ |
{NULL, NULL}, /* Bc */ |
{NULL, NULL}, /* Bf */ |
{mdoc_bf_pre, NULL}, /* Bf */ |
{mdoc_bq_pre, mdoc_bq_post}, /* Bo */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Bo */ |
{mdoc_bq_pre, mdoc_bq_post}, /* Bq */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Bq */ |
{mdoc_xx_pre, NULL}, /* Bsx */ |
{mdoc_xx_pre, NULL}, /* Bsx */ |
{mdoc_bx_pre, NULL}, /* Bx */ |
{mdoc_xx_pre, NULL}, /* Bx */ |
{NULL, NULL}, /* Db */ |
{mdoc_skip_pre, NULL}, /* Db */ |
{NULL, NULL}, /* Dc */ |
{NULL, NULL}, /* Dc */ |
{mdoc_dq_pre, mdoc_dq_post}, /* Do */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Do */ |
{mdoc_dq_pre, mdoc_dq_post}, /* Dq */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Dq */ |
{NULL, NULL}, /* Ec */ |
{NULL, NULL}, /* Ec */ /* FIXME: no space */ |
{NULL, NULL}, /* Ef */ |
{NULL, NULL}, /* Ef */ |
{mdoc_em_pre, NULL}, /* Em */ |
{mdoc_em_pre, NULL}, /* Em */ |
{NULL, NULL}, /* Eo */ |
{mdoc_eo_pre, mdoc_eo_post}, /* Eo */ |
{mdoc_xx_pre, NULL}, /* Fx */ |
{mdoc_xx_pre, NULL}, /* Fx */ |
{NULL, NULL}, /* Ms */ |
{mdoc_no_pre, NULL}, /* Ms */ |
{NULL, NULL}, /* No */ |
{mdoc_no_pre, NULL}, /* No */ |
{mdoc_ns_pre, NULL}, /* Ns */ |
{mdoc_ns_pre, NULL}, /* Ns */ |
{mdoc_xx_pre, NULL}, /* Nx */ |
{mdoc_xx_pre, NULL}, /* Nx */ |
{mdoc_xx_pre, NULL}, /* Ox */ |
{mdoc_xx_pre, NULL}, /* Ox */ |
{NULL, NULL}, /* Pc */ |
{NULL, NULL}, /* Pc */ |
{NULL, NULL}, /* Pf */ |
{mdoc_igndelim_pre, mdoc_pf_post}, /* Pf */ |
{mdoc_pq_pre, mdoc_pq_post}, /* Po */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Po */ |
{mdoc_pq_pre, mdoc_pq_post}, /* Pq */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Pq */ |
{NULL, NULL}, /* Qc */ |
{NULL, NULL}, /* Qc */ |
{mdoc_sq_pre, mdoc_sq_post}, /* Ql */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Ql */ |
{mdoc_qq_pre, mdoc_qq_post}, /* Qo */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Qo */ |
{mdoc_qq_pre, mdoc_qq_post}, /* Qq */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Qq */ |
{NULL, NULL}, /* Re */ |
{NULL, NULL}, /* Re */ |
{NULL, NULL}, /* Rs */ |
{mdoc_rs_pre, NULL}, /* Rs */ |
{NULL, NULL}, /* Sc */ |
{NULL, NULL}, /* Sc */ |
{mdoc_sq_pre, mdoc_sq_post}, /* So */ |
{mdoc_quote_pre, mdoc_quote_post}, /* So */ |
{mdoc_sq_pre, mdoc_sq_post}, /* Sq */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Sq */ |
{NULL, NULL}, /* Sm */ |
{mdoc_sm_pre, NULL}, /* Sm */ |
{mdoc_sx_pre, NULL}, /* Sx */ |
{mdoc_sx_pre, NULL}, /* Sx */ |
{NULL, NULL}, /* Sy */ |
{mdoc_sy_pre, NULL}, /* Sy */ |
{NULL, NULL}, /* Tn */ |
{NULL, NULL}, /* Tn */ |
{mdoc_xx_pre, NULL}, /* Ux */ |
{mdoc_xx_pre, NULL}, /* Ux */ |
{NULL, NULL}, /* Xc */ |
{NULL, NULL}, /* Xc */ |
{NULL, NULL}, /* Xo */ |
{NULL, NULL}, /* Xo */ |
{mdoc_fo_pre, mdoc_fo_post}, /* Fo */ |
{mdoc_fo_pre, mdoc_fo_post}, /* Fo */ |
{NULL, NULL}, /* Fc */ |
{NULL, NULL}, /* Fc */ |
{mdoc_op_pre, mdoc_op_post}, /* Oo */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Oo */ |
{NULL, NULL}, /* Oc */ |
{NULL, NULL}, /* Oc */ |
{NULL, NULL}, /* Bk */ |
{mdoc_bk_pre, mdoc_bk_post}, /* Bk */ |
{NULL, NULL}, /* Ek */ |
{NULL, NULL}, /* Ek */ |
{NULL, NULL}, /* Bt */ |
{NULL, NULL}, /* Bt */ |
{NULL, NULL}, /* Hf */ |
{NULL, NULL}, /* Hf */ |
{NULL, NULL}, /* Fr */ |
{mdoc_em_pre, NULL}, /* Fr */ |
{NULL, NULL}, /* Ud */ |
{NULL, NULL}, /* Ud */ |
{NULL, NULL}, /* Lb */ |
{mdoc_lb_pre, NULL}, /* Lb */ |
{mdoc_sp_pre, NULL}, /* Lp */ |
{mdoc_abort_pre, NULL}, /* Lp */ |
{mdoc_lk_pre, NULL}, /* Lk */ |
{mdoc_lk_pre, NULL}, /* Lk */ |
{mdoc_mt_pre, NULL}, /* Mt */ |
{mdoc_mt_pre, NULL}, /* Mt */ |
{mdoc_brq_pre, mdoc_brq_post}, /* Brq */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Brq */ |
{mdoc_brq_pre, mdoc_brq_post}, /* Bro */ |
{mdoc_quote_pre, mdoc_quote_post}, /* Bro */ |
{NULL, NULL}, /* Brc */ |
{NULL, NULL}, /* Brc */ |
{NULL, NULL}, /* %C */ |
{mdoc__x_pre, mdoc__x_post}, /* %C */ |
{NULL, NULL}, /* Es */ /* TODO */ |
{mdoc_skip_pre, NULL}, /* Es */ |
{NULL, NULL}, /* En */ /* TODO */ |
{mdoc_quote_pre, mdoc_quote_post}, /* En */ |
{mdoc_xx_pre, NULL}, /* Dx */ |
{mdoc_xx_pre, NULL}, /* Dx */ |
{NULL, NULL}, /* %Q */ |
{mdoc__x_pre, mdoc__x_post}, /* %Q */ |
{mdoc_sp_pre, NULL}, /* br */ |
{mdoc__x_pre, mdoc__x_post}, /* %U */ |
{mdoc_sp_pre, NULL}, /* sp */ |
{NULL, NULL}, /* Ta */ |
|
{mdoc_tg_pre, NULL}, /* Tg */ |
}; |
}; |
|
|
static char buf[BUFSIZ]; /* XXX */ |
|
|
|
#define bufcat(x) (void)strlcat(buf, (x), BUFSIZ) |
/* |
#define bufinit() buf[0] = 0 |
* See the same function in mdoc_term.c for documentation. |
#define buffmt(...) (void)snprintf(buf, BUFSIZ - 1, __VA_ARGS__) |
*/ |
|
static void |
void |
synopsis_pre(struct html *h, struct roff_node *n) |
html_mdoc(void *arg, const struct mdoc *m) |
|
{ |
{ |
struct html *h; |
struct roff_node *np; |
struct tag *t; |
|
|
|
h = (struct html *)arg; |
if ((n->flags & NODE_SYNPRETTY) == 0 || |
|
(np = roff_node_prev(n)) == NULL) |
|
return; |
|
|
print_gen_doctype(h); |
if (np->tok == n->tok && |
t = print_otag(h, TAG_HTML, 0, NULL); |
MDOC_Fo != n->tok && |
print_mdoc(mdoc_meta(m), mdoc_node(m), h); |
MDOC_Ft != n->tok && |
print_tagq(h, t); |
MDOC_Fn != n->tok) { |
|
print_otag(h, TAG_BR, ""); |
|
return; |
|
} |
|
|
printf("\n"); |
switch (np->tok) { |
} |
case MDOC_Fd: |
|
case MDOC_Fn: |
|
case MDOC_Fo: |
static int |
case MDOC_In: |
a2list(const struct mdoc_node *n) |
case MDOC_Vt: |
{ |
break; |
int i; |
case MDOC_Ft: |
|
if (n->tok != MDOC_Fn && n->tok != MDOC_Fo) |
assert(MDOC_BLOCK == n->type && MDOC_Bl == n->tok); |
|
assert(n->args); |
|
|
|
for (i = 0; i < (int)n->args->argc; i++) |
|
switch (n->args->argv[i].arg) { |
|
case (MDOC_Enum): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Dash): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Hyphen): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Bullet): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Tag): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Hang): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Inset): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Diag): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Item): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Column): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Ohang): |
|
return(n->args->argv[i].arg); |
|
default: |
|
break; |
break; |
} |
/* FALLTHROUGH */ |
|
default: |
abort(); |
print_otag(h, TAG_BR, ""); |
/* NOTREACHED */ |
return; |
|
} |
|
html_close_paragraph(h); |
|
print_otag(h, TAG_P, "c", "Pp"); |
} |
} |
|
|
|
void |
static int |
html_mdoc(void *arg, const struct roff_meta *mdoc) |
a2width(const char *p) |
|
{ |
{ |
int i, len; |
struct html *h; |
|
struct roff_node *n; |
|
struct tag *t; |
|
|
if (0 == (len = (int)strlen(p))) |
h = (struct html *)arg; |
return(0); |
n = mdoc->first->child; |
for (i = 0; i < len - 1; i++) |
|
if ( ! isdigit((u_char)p[i])) |
|
break; |
|
|
|
if (i == len - 1) |
if ((h->oflags & HTML_FRAGMENT) == 0) { |
if ('n' == p[len - 1] || 'm' == p[len - 1]) |
print_gen_decls(h); |
return(atoi(p) + 2); |
print_otag(h, TAG_HTML, ""); |
|
if (n != NULL && n->type == ROFFT_COMMENT) |
|
print_gen_comment(h, n); |
|
t = print_otag(h, TAG_HEAD, ""); |
|
print_mdoc_head(mdoc, h); |
|
print_tagq(h, t); |
|
print_otag(h, TAG_BODY, ""); |
|
} |
|
|
return(len + 2); |
mdoc_root_pre(mdoc, h); |
} |
t = print_otag(h, TAG_MAIN, "c", "manual-text"); |
|
print_mdoc_nodelist(mdoc, n, h); |
|
|
static int |
|
a2offs(const char *p) |
|
{ |
|
int len, i; |
|
|
|
if (0 == strcmp(p, "left")) |
|
return(0); |
|
if (0 == strcmp(p, "indent")) |
|
return(INDENT + 1); |
|
if (0 == strcmp(p, "indent-two")) |
|
return((INDENT + 1) * 2); |
|
|
|
if (0 == (len = (int)strlen(p))) |
|
return(0); |
|
|
|
for (i = 0; i < len - 1; i++) |
|
if ( ! isdigit((u_char)p[i])) |
|
break; |
|
|
|
if (i == len - 1) |
|
if ('n' == p[len - 1] || 'm' == p[len - 1]) |
|
return(atoi(p)); |
|
|
|
return(len); |
|
} |
|
|
|
|
|
static void |
|
print_mdoc(MDOC_ARGS) |
|
{ |
|
struct tag *t; |
|
struct htmlpair tag; |
|
|
|
t = print_otag(h, TAG_HEAD, 0, NULL); |
|
print_mdoc_head(m, n, h); |
|
print_tagq(h, t); |
print_tagq(h, t); |
|
mdoc_root_post(mdoc, h); |
t = print_otag(h, TAG_BODY, 0, NULL); |
print_tagq(h, NULL); |
|
|
tag.key = ATTR_CLASS; |
|
tag.val = "body"; |
|
print_otag(h, TAG_DIV, 1, &tag); |
|
|
|
print_mdoc_nodelist(m, n, h); |
|
print_tagq(h, t); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static void |
static void |
print_mdoc_head(MDOC_ARGS) |
print_mdoc_head(const struct roff_meta *meta, struct html *h) |
{ |
{ |
char b[BUFSIZ]; |
char *cp; |
|
|
print_gen_head(h); |
print_gen_head(h); |
|
|
(void)snprintf(b, BUFSIZ - 1, |
if (meta->arch != NULL && meta->msec != NULL) |
"%s(%d)", m->title, m->msec); |
mandoc_asprintf(&cp, "%s(%s) (%s)", meta->title, |
|
meta->msec, meta->arch); |
|
else if (meta->msec != NULL) |
|
mandoc_asprintf(&cp, "%s(%s)", meta->title, meta->msec); |
|
else if (meta->arch != NULL) |
|
mandoc_asprintf(&cp, "%s (%s)", meta->title, meta->arch); |
|
else |
|
cp = mandoc_strdup(meta->title); |
|
|
if (m->arch) { |
print_otag(h, TAG_TITLE, ""); |
(void)strlcat(b, " (", BUFSIZ); |
print_text(h, cp); |
(void)strlcat(b, m->arch, BUFSIZ); |
free(cp); |
(void)strlcat(b, ")", BUFSIZ); |
|
} |
|
|
|
print_otag(h, TAG_TITLE, 0, NULL); |
|
print_text(h, b); |
|
} |
} |
|
|
|
|
static void |
static void |
print_mdoc_nodelist(MDOC_ARGS) |
print_mdoc_nodelist(MDOC_ARGS) |
{ |
{ |
|
|
print_mdoc_node(m, n, h); |
while (n != NULL) { |
if (n->next) |
print_mdoc_node(meta, n, h); |
print_mdoc_nodelist(m, n->next, h); |
n = n->next; |
|
} |
} |
} |
|
|
|
|
static void |
static void |
print_mdoc_node(MDOC_ARGS) |
print_mdoc_node(MDOC_ARGS) |
{ |
{ |
int child; |
|
struct tag *t; |
struct tag *t; |
|
int child; |
|
|
child = 1; |
if (n->type == ROFFT_COMMENT || n->flags & NODE_NOPRT) |
t = SLIST_FIRST(&h->tags); |
return; |
|
|
bufinit(); |
if ((n->flags & NODE_NOFILL) == 0) |
|
html_fillmode(h, ROFF_fi); |
|
else if (html_fillmode(h, ROFF_nf) == ROFF_nf && |
|
n->tok != ROFF_fi && n->flags & NODE_LINE) |
|
print_endline(h); |
|
|
|
child = 1; |
|
n->flags &= ~NODE_ENDED; |
switch (n->type) { |
switch (n->type) { |
case (MDOC_ROOT): |
case ROFFT_TEXT: |
child = mdoc_root_pre(m, n, h); |
if (n->flags & NODE_LINE) { |
|
switch (*n->string) { |
|
case '\0': |
|
h->col = 1; |
|
print_endline(h); |
|
return; |
|
case ' ': |
|
if ((h->flags & HTML_NONEWLINE) == 0 && |
|
(n->flags & NODE_NOFILL) == 0) |
|
print_otag(h, TAG_BR, ""); |
|
break; |
|
default: |
|
break; |
|
} |
|
} |
|
t = h->tag; |
|
t->refcnt++; |
|
if (n->flags & NODE_DELIMC) |
|
h->flags |= HTML_NOSPACE; |
|
if (n->flags & NODE_HREF) |
|
print_tagged_text(h, n->string, n); |
|
else |
|
print_text(h, n->string); |
|
if (n->flags & NODE_DELIMO) |
|
h->flags |= HTML_NOSPACE; |
break; |
break; |
case (MDOC_TEXT): |
case ROFFT_EQN: |
print_text(h, n->string); |
t = h->tag; |
|
t->refcnt++; |
|
print_eqn(h, n->eqn); |
break; |
break; |
|
case ROFFT_TBL: |
|
/* |
|
* This will take care of initialising all of the table |
|
* state data for the first table, then tearing it down |
|
* for the last one. |
|
*/ |
|
print_tbl(h, n->span); |
|
return; |
default: |
default: |
if (mdocs[n->tok].pre) |
/* |
child = (*mdocs[n->tok].pre)(m, n, h); |
* Close out the current table, if it's open, and unset |
|
* the "meta" table state. This will be reopened on the |
|
* next table element. |
|
*/ |
|
if (h->tblt != NULL) |
|
print_tblclose(h); |
|
assert(h->tblt == NULL); |
|
t = h->tag; |
|
t->refcnt++; |
|
if (n->tok < ROFF_MAX) { |
|
roff_html_pre(h, n); |
|
t->refcnt--; |
|
print_stagq(h, t); |
|
return; |
|
} |
|
assert(n->tok >= MDOC_Dd && n->tok < MDOC_MAX); |
|
if (mdoc_html_acts[n->tok - MDOC_Dd].pre != NULL && |
|
(n->end == ENDBODY_NOT || n->child != NULL)) |
|
child = (*mdoc_html_acts[n->tok - MDOC_Dd].pre)(meta, |
|
n, h); |
break; |
break; |
} |
} |
|
|
if (child && n->child) |
if (h->flags & HTML_KEEP && n->flags & NODE_LINE) { |
print_mdoc_nodelist(m, n->child, h); |
h->flags &= ~HTML_KEEP; |
|
h->flags |= HTML_PREKEEP; |
|
} |
|
|
|
if (child && n->child != NULL) |
|
print_mdoc_nodelist(meta, n->child, h); |
|
|
|
t->refcnt--; |
print_stagq(h, t); |
print_stagq(h, t); |
|
|
bufinit(); |
|
|
|
switch (n->type) { |
switch (n->type) { |
case (MDOC_ROOT): |
case ROFFT_TEXT: |
mdoc_root_post(m, n, h); |
case ROFFT_EQN: |
break; |
break; |
case (MDOC_TEXT): |
|
break; |
|
default: |
default: |
if (mdocs[n->tok].post) |
if (mdoc_html_acts[n->tok - MDOC_Dd].post == NULL || |
(*mdocs[n->tok].post)(m, n, h); |
n->flags & NODE_ENDED) |
|
break; |
|
(*mdoc_html_acts[n->tok - MDOC_Dd].post)(meta, n, h); |
|
if (n->end != ENDBODY_NOT) |
|
n->body->flags |= NODE_ENDED; |
break; |
break; |
} |
} |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static void |
static void |
mdoc_root_post(MDOC_ARGS) |
mdoc_root_post(const struct roff_meta *meta, struct html *h) |
{ |
{ |
struct tm tm; |
|
struct htmlpair tag[2]; |
|
struct tag *t, *tt; |
struct tag *t, *tt; |
char b[BUFSIZ]; |
|
|
|
(void)localtime_r(&m->date, &tm); |
t = print_otag(h, TAG_TABLE, "c", "foot"); |
|
tt = print_otag(h, TAG_TR, ""); |
|
|
if (0 == strftime(b, BUFSIZ - 1, "%B %e, %Y", &tm)) |
print_otag(h, TAG_TD, "c", "foot-date"); |
err(EXIT_FAILURE, "strftime"); |
print_text(h, meta->date); |
|
|
tag[0].key = ATTR_CLASS; |
|
tag[0].val = "footer"; |
|
tag[1].key = ATTR_STYLE; |
|
tag[1].val = "width: 100%;"; |
|
t = print_otag(h, TAG_TABLE, 2, tag); |
|
tt = print_otag(h, TAG_TR, 0, NULL); |
|
|
|
tag[0].key = ATTR_STYLE; |
|
tag[0].val = "width: 50%;"; |
|
print_otag(h, TAG_TD, 1, tag); |
|
print_text(h, b); |
|
print_stagq(h, tt); |
print_stagq(h, tt); |
|
|
tag[0].key = ATTR_STYLE; |
print_otag(h, TAG_TD, "c", "foot-os"); |
tag[0].val = "width: 50%; text-align: right;"; |
print_text(h, meta->os); |
print_otag(h, TAG_TD, 1, tag); |
|
print_text(h, m->os); |
|
print_tagq(h, t); |
print_tagq(h, t); |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_root_pre(MDOC_ARGS) |
mdoc_root_pre(const struct roff_meta *meta, struct html *h) |
{ |
{ |
struct htmlpair tag[2]; |
|
struct tag *t, *tt; |
struct tag *t, *tt; |
char b[BUFSIZ], title[BUFSIZ]; |
char *volume, *title; |
|
|
(void)strlcpy(b, m->vol, BUFSIZ); |
if (NULL == meta->arch) |
|
volume = mandoc_strdup(meta->vol); |
|
else |
|
mandoc_asprintf(&volume, "%s (%s)", |
|
meta->vol, meta->arch); |
|
|
if (m->arch) { |
if (NULL == meta->msec) |
(void)strlcat(b, " (", BUFSIZ); |
title = mandoc_strdup(meta->title); |
(void)strlcat(b, m->arch, BUFSIZ); |
else |
(void)strlcat(b, ")", BUFSIZ); |
mandoc_asprintf(&title, "%s(%s)", |
} |
meta->title, meta->msec); |
|
|
(void)snprintf(title, BUFSIZ - 1, |
t = print_otag(h, TAG_TABLE, "c", "head"); |
"%s(%d)", m->title, m->msec); |
tt = print_otag(h, TAG_TR, ""); |
|
|
tag[0].key = ATTR_CLASS; |
print_otag(h, TAG_TD, "c", "head-ltitle"); |
tag[0].val = "header"; |
|
tag[1].key = ATTR_STYLE; |
|
tag[1].val = "width: 100%;"; |
|
t = print_otag(h, TAG_TABLE, 2, tag); |
|
tt = print_otag(h, TAG_TR, 0, NULL); |
|
|
|
tag[0].key = ATTR_STYLE; |
|
tag[0].val = "width: 33%;"; |
|
print_otag(h, TAG_TD, 1, tag); |
|
print_text(h, title); |
print_text(h, title); |
print_stagq(h, tt); |
print_stagq(h, tt); |
|
|
tag[0].key = ATTR_STYLE; |
print_otag(h, TAG_TD, "c", "head-vol"); |
tag[0].val = "width: 33%; text-align: center;"; |
print_text(h, volume); |
print_otag(h, TAG_TD, 1, tag); |
|
print_text(h, b); |
|
print_stagq(h, tt); |
print_stagq(h, tt); |
|
|
tag[0].key = ATTR_STYLE; |
print_otag(h, TAG_TD, "c", "head-rtitle"); |
tag[0].val = "width: 33%; text-align: right;"; |
|
print_otag(h, TAG_TD, 1, tag); |
|
print_text(h, title); |
print_text(h, title); |
print_tagq(h, t); |
print_tagq(h, t); |
|
|
return(1); |
free(title); |
|
free(volume); |
|
return 1; |
} |
} |
|
|
|
static int |
|
mdoc_code_pre(MDOC_ARGS) |
|
{ |
|
print_otag_id(h, TAG_CODE, roff_name[n->tok], n); |
|
return 1; |
|
} |
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_sh_pre(MDOC_ARGS) |
mdoc_sh_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag[2]; |
struct roff_node *sn, *subn; |
const struct mdoc_node *nn; |
struct tag *t, *tnav, *tsec, *tsub; |
|
char *id; |
|
int sc; |
|
|
if (MDOC_HEAD == n->type) { |
switch (n->type) { |
tag[0].key = ATTR_CLASS; |
case ROFFT_BLOCK: |
tag[0].val = "sec-head"; |
html_close_paragraph(h); |
print_otag(h, TAG_DIV, 1, tag); |
if ((h->oflags & HTML_TOC) == 0 || |
print_otag(h, TAG_SPAN, 1, tag); |
h->flags & HTML_TOCDONE || |
|
n->sec <= SEC_SYNOPSIS) { |
for (nn = n->child; nn; nn = nn->next) { |
print_otag(h, TAG_SECTION, "c", "Sh"); |
bufcat(nn->string); |
break; |
if (nn->next) |
|
bufcat(" "); |
|
} |
} |
tag[0].key = ATTR_NAME; |
h->flags |= HTML_TOCDONE; |
tag[0].val = buf; |
sc = 0; |
print_otag(h, TAG_A, 1, tag); |
for (sn = n->next; sn != NULL; sn = sn->next) |
return(1); |
if (sn->sec == SEC_CUSTOM) |
} else if (MDOC_BLOCK == n->type) { |
if (++sc == 2) |
tag[0].key = ATTR_CLASS; |
break; |
tag[0].val = "sec-block"; |
if (sc < 2) |
|
break; |
if (n->prev && NULL == n->prev->body->child) { |
tnav = print_otag(h, TAG_NAV, "r", "doc-toc"); |
print_otag(h, TAG_DIV, 1, tag); |
t = print_otag(h, TAG_H1, "c", "Sh"); |
return(1); |
print_text(h, "TABLE OF CONTENTS"); |
|
print_tagq(h, t); |
|
t = print_otag(h, TAG_UL, "c", "Bl-compact"); |
|
for (sn = n; sn != NULL; sn = sn->next) { |
|
tsec = print_otag(h, TAG_LI, ""); |
|
id = html_make_id(sn->head, 0); |
|
tsub = print_otag(h, TAG_A, "hR", id); |
|
free(id); |
|
print_mdoc_nodelist(meta, sn->head->child, h); |
|
print_tagq(h, tsub); |
|
tsub = NULL; |
|
for (subn = sn->body->child; subn != NULL; |
|
subn = subn->next) { |
|
if (subn->tok != MDOC_Ss) |
|
continue; |
|
id = html_make_id(subn->head, 0); |
|
if (id == NULL) |
|
continue; |
|
if (tsub == NULL) |
|
print_otag(h, TAG_UL, |
|
"c", "Bl-compact"); |
|
tsub = print_otag(h, TAG_LI, ""); |
|
print_otag(h, TAG_A, "hR", id); |
|
free(id); |
|
print_mdoc_nodelist(meta, |
|
subn->head->child, h); |
|
print_tagq(h, tsub); |
|
} |
|
print_tagq(h, tsec); |
} |
} |
|
print_tagq(h, tnav); |
bufcat("margin-top: 1em;"); |
print_otag(h, TAG_SECTION, "c", "Sh"); |
if (NULL == n->next) |
break; |
bufcat("margin-bottom: 1em;"); |
case ROFFT_HEAD: |
|
print_otag_id(h, TAG_H1, "Sh", n); |
tag[1].key = ATTR_STYLE; |
break; |
tag[1].val = buf; |
case ROFFT_BODY: |
|
if (n->sec == SEC_AUTHORS) |
print_otag(h, TAG_DIV, 2, tag); |
h->flags &= ~(HTML_SPLIT|HTML_NOSPLIT); |
return(1); |
break; |
|
default: |
|
break; |
} |
} |
|
return 1; |
buffmt("margin-left: %dem;", INDENT); |
|
|
|
tag[0].key = ATTR_CLASS; |
|
tag[0].val = "sec-body"; |
|
tag[1].key = ATTR_STYLE; |
|
tag[1].val = buf; |
|
|
|
print_otag(h, TAG_DIV, 2, tag); |
|
return(1); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_ss_pre(MDOC_ARGS) |
mdoc_ss_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag[2]; |
switch (n->type) { |
int i; |
case ROFFT_BLOCK: |
const struct mdoc_node *nn; |
html_close_paragraph(h); |
|
print_otag(h, TAG_SECTION, "c", "Ss"); |
i = 0; |
break; |
|
case ROFFT_HEAD: |
if (MDOC_BODY == n->type) { |
print_otag_id(h, TAG_H2, "Ss", n); |
tag[i].key = ATTR_CLASS; |
break; |
tag[i++].val = "ssec-body"; |
case ROFFT_BODY: |
if (n->parent->next && n->child) { |
break; |
bufcat("margin-bottom: 1em;"); |
default: |
tag[i].key = ATTR_STYLE; |
abort(); |
tag[i++].val = buf; |
|
} |
|
print_otag(h, TAG_DIV, i, tag); |
|
return(1); |
|
} else if (MDOC_BLOCK == n->type) { |
|
tag[i].key = ATTR_CLASS; |
|
tag[i++].val = "ssec-block"; |
|
if (n->prev) { |
|
bufcat("margin-top: 1em;"); |
|
tag[i].key = ATTR_STYLE; |
|
tag[i++].val = buf; |
|
} |
|
print_otag(h, TAG_DIV, i, tag); |
|
return(1); |
|
} |
} |
|
return 1; |
buffmt("margin-left: -%dem;", INDENT - HALFINDENT); |
|
|
|
tag[0].key = ATTR_CLASS; |
|
tag[0].val = "ssec-head"; |
|
tag[1].key = ATTR_STYLE; |
|
tag[1].val = buf; |
|
|
|
print_otag(h, TAG_DIV, 2, tag); |
|
print_otag(h, TAG_SPAN, 1, tag); |
|
|
|
bufinit(); |
|
for (nn = n->child; nn; nn = nn->next) { |
|
bufcat(nn->string); |
|
if (nn->next) |
|
bufcat(" "); |
|
} |
|
tag[0].key = ATTR_NAME; |
|
tag[0].val = buf; |
|
print_otag(h, TAG_A, 1, tag); |
|
|
|
return(1); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_fl_pre(MDOC_ARGS) |
mdoc_fl_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
struct roff_node *nn; |
|
|
tag.key = ATTR_CLASS; |
print_otag_id(h, TAG_CODE, "Fl", n); |
tag.val = "flag"; |
print_text(h, "\\-"); |
|
if (n->child != NULL || |
print_otag(h, TAG_SPAN, 1, &tag); |
((nn = roff_node_next(n)) != NULL && |
if (MDOC_Fl == n->tok) { |
nn->type != ROFFT_TEXT && |
print_text(h, "\\-"); |
(nn->flags & NODE_LINE) == 0)) |
h->flags |= HTML_NOSPACE; |
h->flags |= HTML_NOSPACE; |
} |
|
return(1); |
return 1; |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_nd_pre(MDOC_ARGS) |
mdoc_nd_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
switch (n->type) { |
|
case ROFFT_BLOCK: |
if (MDOC_BODY != n->type) |
return 1; |
return(1); |
case ROFFT_HEAD: |
|
return 0; |
/* XXX - this can contain block elements! */ |
case ROFFT_BODY: |
|
break; |
|
default: |
|
abort(); |
|
} |
print_text(h, "\\(em"); |
print_text(h, "\\(em"); |
tag.key = ATTR_CLASS; |
print_otag(h, TAG_SPAN, "c", "Nd"); |
tag.val = "desc-body"; |
return 1; |
print_otag(h, TAG_SPAN, 1, &tag); |
|
return(1); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_op_pre(MDOC_ARGS) |
|
{ |
|
struct htmlpair tag; |
|
|
|
if (MDOC_BODY != n->type) |
|
return(1); |
|
|
|
/* XXX - this can contain block elements! */ |
|
print_text(h, "\\(lB"); |
|
h->flags |= HTML_NOSPACE; |
|
tag.key = ATTR_CLASS; |
|
tag.val = "opt"; |
|
print_otag(h, TAG_SPAN, 1, &tag); |
|
return(1); |
|
} |
|
|
|
|
|
/* ARGSUSED */ |
|
static void |
|
mdoc_op_post(MDOC_ARGS) |
|
{ |
|
|
|
if (MDOC_BODY != n->type) |
|
return; |
|
h->flags |= HTML_NOSPACE; |
|
print_text(h, "\\(rB"); |
|
} |
|
|
|
|
|
static int |
|
mdoc_nm_pre(MDOC_ARGS) |
mdoc_nm_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
switch (n->type) { |
|
case ROFFT_BLOCK: |
if ( ! (HTML_NEWLINE & h->flags)) |
break; |
if (SEC_SYNOPSIS == n->sec) { |
case ROFFT_HEAD: |
tag.key = ATTR_STYLE; |
print_otag(h, TAG_TD, ""); |
tag.val = "clear: both;"; |
/* FALLTHROUGH */ |
print_otag(h, TAG_BR, 1, &tag); |
case ROFFT_ELEM: |
} |
print_otag(h, TAG_CODE, "c", "Nm"); |
|
return 1; |
tag.key = ATTR_CLASS; |
case ROFFT_BODY: |
tag.val = "name"; |
print_otag(h, TAG_TD, ""); |
|
return 1; |
print_otag(h, TAG_SPAN, 1, &tag); |
default: |
if (NULL == n->child) |
abort(); |
print_text(h, m->name); |
} |
|
html_close_paragraph(h); |
return(1); |
synopsis_pre(h, n); |
|
print_otag(h, TAG_TABLE, "c", "Nm"); |
|
print_otag(h, TAG_TR, ""); |
|
return 1; |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_xr_pre(MDOC_ARGS) |
mdoc_xr_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag[2]; |
char *name, *section, *label; |
const char *name, *sec; |
|
const struct mdoc_node *nn; |
|
|
|
nn = n->child; |
if (n->child == NULL) |
name = nn && nn->string ? nn->string : ""; |
return 0; |
nn = nn ? nn->next : NULL; |
|
sec = nn && nn->string ? nn->string : ""; |
|
|
|
buffmt("%s%s%s.html", name, name && sec ? "." : "", sec); |
name = n->child->string; |
|
if (n->child->next != NULL) { |
|
section = n->child->next->string; |
|
mandoc_asprintf(&label, "%s, section %s", name, section); |
|
} else |
|
section = label = NULL; |
|
|
tag[0].key = ATTR_CLASS; |
if (h->base_man1) |
tag[0].val = "link-man"; |
print_otag(h, TAG_A, "chM?", "Xr", |
tag[1].key = ATTR_HREF; |
name, section, "aria-label", label); |
tag[1].val = buf; |
else |
print_otag(h, TAG_A, 2, tag); |
print_otag(h, TAG_A, "c?", "Xr", "aria-label", label); |
|
|
nn = n->child; |
free(label); |
print_text(h, nn->string); |
print_text(h, name); |
if (NULL == (nn = nn->next)) |
|
return(0); |
|
|
|
|
if (section == NULL) |
|
return 0; |
|
|
h->flags |= HTML_NOSPACE; |
h->flags |= HTML_NOSPACE; |
print_text(h, "("); |
print_text(h, "("); |
h->flags |= HTML_NOSPACE; |
h->flags |= HTML_NOSPACE; |
print_text(h, nn->string); |
print_text(h, section); |
h->flags |= HTML_NOSPACE; |
h->flags |= HTML_NOSPACE; |
print_text(h, ")"); |
print_text(h, ")"); |
|
return 0; |
return(0); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_ns_pre(MDOC_ARGS) |
mdoc_tg_pre(MDOC_ARGS) |
{ |
{ |
|
char *id; |
|
|
h->flags |= HTML_NOSPACE; |
if ((id = html_make_id(n, 1)) != NULL) { |
return(1); |
print_tagq(h, print_otag(h, TAG_MARK, "i", id)); |
} |
free(id); |
|
|
|
|
/* ARGSUSED */ |
|
static int |
|
mdoc_ar_pre(MDOC_ARGS) |
|
{ |
|
struct htmlpair tag; |
|
|
|
tag.key = ATTR_CLASS; |
|
tag.val = "arg"; |
|
|
|
print_otag(h, TAG_SPAN, 1, &tag); |
|
return(1); |
|
} |
|
|
|
|
|
/* ARGSUSED */ |
|
static int |
|
mdoc_xx_pre(MDOC_ARGS) |
|
{ |
|
const char *pp; |
|
struct htmlpair tag; |
|
|
|
switch (n->tok) { |
|
case (MDOC_Bsx): |
|
pp = "BSDI BSD/OS"; |
|
break; |
|
case (MDOC_Dx): |
|
pp = "DragonFlyBSD"; |
|
break; |
|
case (MDOC_Fx): |
|
pp = "FreeBSD"; |
|
break; |
|
case (MDOC_Nx): |
|
pp = "NetBSD"; |
|
break; |
|
case (MDOC_Ox): |
|
pp = "OpenBSD"; |
|
break; |
|
case (MDOC_Ux): |
|
pp = "UNIX"; |
|
break; |
|
default: |
|
return(1); |
|
} |
} |
|
return 0; |
tag.key = ATTR_CLASS; |
|
tag.val = "unix"; |
|
|
|
print_otag(h, TAG_SPAN, 1, &tag); |
|
print_text(h, pp); |
|
return(1); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_bx_pre(MDOC_ARGS) |
mdoc_ns_pre(MDOC_ARGS) |
{ |
{ |
const struct mdoc_node *nn; |
|
struct htmlpair tag; |
|
|
|
tag.key = ATTR_CLASS; |
if ( ! (NODE_LINE & n->flags)) |
tag.val = "unix"; |
|
|
|
print_otag(h, TAG_SPAN, 1, &tag); |
|
|
|
for (nn = n->child; nn; nn = nn->next) |
|
print_mdoc_node(m, nn, h); |
|
|
|
if (n->child) |
|
h->flags |= HTML_NOSPACE; |
h->flags |= HTML_NOSPACE; |
|
return 1; |
print_text(h, "BSD"); |
|
return(0); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_tbl_block_pre(MDOC_ARGS, int t, int w, int o, int c) |
mdoc_ar_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
print_otag(h, TAG_VAR, "c", "Ar"); |
|
return 1; |
switch (t) { |
|
case (MDOC_Column): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Item): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Ohang): |
|
buffmt("margin-left: %dem; clear: both;", o); |
|
break; |
|
default: |
|
buffmt("margin-left: %dem; clear: both;", w + o); |
|
break; |
|
} |
|
|
|
if ( ! c && MDOC_Column != t) { |
|
if (n->prev && n->prev->body->child) |
|
bufcat("padding-top: 1em;"); |
|
else if (NULL == n->prev) |
|
bufcat("padding-top: 1em;"); |
|
} |
|
|
|
tag.key = ATTR_STYLE; |
|
tag.val = buf; |
|
print_otag(h, TAG_DIV, 1, &tag); |
|
return(1); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_tbl_body_pre(MDOC_ARGS, int t, int w) |
mdoc_xx_pre(MDOC_ARGS) |
{ |
{ |
|
print_otag(h, TAG_SPAN, "c", "Ux"); |
print_otag(h, TAG_DIV, 0, NULL); |
return 1; |
return(1); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_tbl_head_pre(MDOC_ARGS, int t, int w) |
mdoc_it_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
const struct roff_node *bl; |
struct ord *ord; |
enum mdoc_list type; |
char nbuf[BUFSIZ]; |
|
|
|
switch (t) { |
bl = n->parent; |
case (MDOC_Item): |
while (bl->tok != MDOC_Bl) |
/* FALLTHROUGH */ |
bl = bl->parent; |
case (MDOC_Ohang): |
type = bl->norm->Bl.type; |
print_otag(h, TAG_DIV, 0, NULL); |
|
|
switch (type) { |
|
case LIST_bullet: |
|
case LIST_dash: |
|
case LIST_hyphen: |
|
case LIST_item: |
|
case LIST_enum: |
|
switch (n->type) { |
|
case ROFFT_HEAD: |
|
return 0; |
|
case ROFFT_BODY: |
|
print_otag_id(h, TAG_LI, NULL, n); |
|
break; |
|
default: |
|
break; |
|
} |
break; |
break; |
case (MDOC_Column): |
case LIST_diag: |
buffmt("min-width: %dem;", w); |
case LIST_hang: |
bufcat("clear: none;"); |
case LIST_inset: |
if (n->next && MDOC_HEAD == n->next->type) |
case LIST_ohang: |
bufcat("float: left;"); |
switch (n->type) { |
tag.key = ATTR_STYLE; |
case ROFFT_HEAD: |
tag.val = buf; |
print_otag_id(h, TAG_DT, NULL, n); |
print_otag(h, TAG_DIV, 1, &tag); |
break; |
|
case ROFFT_BODY: |
|
print_otag(h, TAG_DD, ""); |
|
break; |
|
default: |
|
break; |
|
} |
break; |
break; |
default: |
case LIST_tag: |
buffmt("margin-left: -%dem; min-width: %dem;", |
switch (n->type) { |
w, w ? w - 1 : 0); |
case ROFFT_HEAD: |
bufcat("clear: left;"); |
print_otag_id(h, TAG_DT, NULL, n); |
if (n->next && n->next->child) |
break; |
bufcat("float: left;"); |
case ROFFT_BODY: |
bufcat("padding-right: 1em;"); |
if (n->child == NULL) { |
tag.key = ATTR_STYLE; |
print_otag(h, TAG_DD, "s", "width", "auto"); |
tag.val = buf; |
print_text(h, "\\ "); |
print_otag(h, TAG_DIV, 1, &tag); |
} else |
|
print_otag(h, TAG_DD, ""); |
|
break; |
|
default: |
|
break; |
|
} |
break; |
break; |
} |
case LIST_column: |
|
switch (n->type) { |
switch (t) { |
case ROFFT_HEAD: |
case (MDOC_Diag): |
break; |
tag.key = ATTR_CLASS; |
case ROFFT_BODY: |
tag.val = "diag"; |
print_otag(h, TAG_TD, ""); |
print_otag(h, TAG_SPAN, 1, &tag); |
break; |
break; |
default: |
case (MDOC_Enum): |
print_otag_id(h, TAG_TR, NULL, n); |
ord = SLIST_FIRST(&h->ords); |
} |
assert(ord); |
|
nbuf[BUFSIZ - 1] = 0; |
|
(void)snprintf(nbuf, BUFSIZ - 1, "%d.", ord->pos++); |
|
print_text(h, nbuf); |
|
return(0); |
|
case (MDOC_Dash): |
|
print_text(h, "\\(en"); |
|
return(0); |
|
case (MDOC_Hyphen): |
|
print_text(h, "\\(hy"); |
|
return(0); |
|
case (MDOC_Bullet): |
|
print_text(h, "\\(bu"); |
|
return(0); |
|
default: |
default: |
break; |
break; |
} |
} |
|
|
return(1); |
return 1; |
} |
} |
|
|
|
|
static int |
static int |
mdoc_tbl_pre(MDOC_ARGS, int type) |
mdoc_bl_pre(MDOC_ARGS) |
{ |
{ |
int i, w, o, c, wp; |
char cattr[32]; |
const struct mdoc_node *bl, *nn; |
struct mdoc_bl *bl; |
|
enum htmltag elemtype; |
|
|
bl = n->parent->parent; |
switch (n->type) { |
if (MDOC_BLOCK != n->type) |
case ROFFT_BLOCK: |
bl = bl->parent; |
html_close_paragraph(h); |
|
break; |
/* FIXME: fmt_vspace() equivalent. */ |
case ROFFT_HEAD: |
|
return 0; |
assert(bl->args); |
case ROFFT_BODY: |
|
return 1; |
w = o = c = 0; |
default: |
wp = -1; |
abort(); |
|
|
for (i = 0; i < (int)bl->args->argc; i++) |
|
if (MDOC_Width == bl->args->argv[i].arg) { |
|
assert(bl->args->argv[i].sz); |
|
wp = i; |
|
w = a2width(bl->args->argv[i].value[0]); |
|
} else if (MDOC_Offset == bl->args->argv[i].arg) { |
|
assert(bl->args->argv[i].sz); |
|
o = a2offs(bl->args->argv[i].value[0]); |
|
} else if (MDOC_Compact == bl->args->argv[i].arg) |
|
c = 1; |
|
|
|
if (MDOC_HEAD == n->type && MDOC_Column == type) { |
|
nn = n->parent->child; |
|
assert(nn && MDOC_HEAD == nn->type); |
|
for (i = 0; nn && nn != n; nn = nn->next, i++) |
|
/* Counter... */ ; |
|
assert(nn); |
|
if (wp >= 0 && i < (int)bl->args[wp].argv->sz) |
|
w = a2width(bl->args->argv[wp].value[i]); |
|
} |
} |
|
|
switch (type) { |
bl = &n->norm->Bl; |
case (MDOC_Enum): |
switch (bl->type) { |
/* FALLTHROUGH */ |
case LIST_bullet: |
case (MDOC_Dash): |
elemtype = TAG_UL; |
/* FALLTHROUGH */ |
(void)strlcpy(cattr, "Bl-bullet", sizeof(cattr)); |
case (MDOC_Hyphen): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Bullet): |
|
if (w < 4) |
|
w = 4; |
|
break; |
break; |
case (MDOC_Inset): |
case LIST_dash: |
/* FALLTHROUGH */ |
case LIST_hyphen: |
case (MDOC_Diag): |
elemtype = TAG_UL; |
w = 1; |
(void)strlcpy(cattr, "Bl-dash", sizeof(cattr)); |
break; |
break; |
default: |
case LIST_item: |
if (0 == w) |
elemtype = TAG_UL; |
w = 10; |
(void)strlcpy(cattr, "Bl-item", sizeof(cattr)); |
break; |
break; |
} |
case LIST_enum: |
|
elemtype = TAG_OL; |
switch (n->type) { |
(void)strlcpy(cattr, "Bl-enum", sizeof(cattr)); |
case (MDOC_BLOCK): |
|
break; |
break; |
case (MDOC_HEAD): |
case LIST_diag: |
return(mdoc_tbl_head_pre(m, n, h, type, w)); |
elemtype = TAG_DL; |
case (MDOC_BODY): |
(void)strlcpy(cattr, "Bl-diag", sizeof(cattr)); |
return(mdoc_tbl_body_pre(m, n, h, type, w)); |
break; |
|
case LIST_hang: |
|
elemtype = TAG_DL; |
|
(void)strlcpy(cattr, "Bl-hang", sizeof(cattr)); |
|
break; |
|
case LIST_inset: |
|
elemtype = TAG_DL; |
|
(void)strlcpy(cattr, "Bl-inset", sizeof(cattr)); |
|
break; |
|
case LIST_ohang: |
|
elemtype = TAG_DL; |
|
(void)strlcpy(cattr, "Bl-ohang", sizeof(cattr)); |
|
break; |
|
case LIST_tag: |
|
if (bl->offs) |
|
print_otag(h, TAG_DIV, "c", "Bd-indent"); |
|
print_otag_id(h, TAG_DL, |
|
bl->comp ? "Bl-tag Bl-compact" : "Bl-tag", n->body); |
|
return 1; |
|
case LIST_column: |
|
elemtype = TAG_TABLE; |
|
(void)strlcpy(cattr, "Bl-column", sizeof(cattr)); |
|
break; |
default: |
default: |
abort(); |
abort(); |
/* NOTREACHED */ |
|
} |
} |
|
if (bl->offs != NULL) |
return(mdoc_tbl_block_pre(m, n, h, type, w, o, c)); |
(void)strlcat(cattr, " Bd-indent", sizeof(cattr)); |
|
if (bl->comp) |
|
(void)strlcat(cattr, " Bl-compact", sizeof(cattr)); |
|
print_otag_id(h, elemtype, cattr, n->body); |
|
return 1; |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_bl_pre(MDOC_ARGS) |
mdoc_ex_pre(MDOC_ARGS) |
{ |
{ |
struct ord *ord; |
if (roff_node_prev(n) != NULL) |
|
print_otag(h, TAG_BR, ""); |
|
return 1; |
|
} |
|
|
if (MDOC_BLOCK != n->type) |
static int |
return(1); |
mdoc_st_pre(MDOC_ARGS) |
if (MDOC_Enum != a2list(n)) |
{ |
return(1); |
print_otag(h, TAG_SPAN, "c", "St"); |
|
return 1; |
ord = malloc(sizeof(struct ord)); |
|
if (NULL == ord) |
|
err(EXIT_FAILURE, "malloc"); |
|
ord->cookie = n; |
|
ord->pos = 1; |
|
SLIST_INSERT_HEAD(&h->ords, ord, entry); |
|
|
|
return(1); |
|
} |
} |
|
|
|
static int |
/* ARGSUSED */ |
mdoc_em_pre(MDOC_ARGS) |
static void |
|
mdoc_bl_post(MDOC_ARGS) |
|
{ |
{ |
struct ord *ord; |
print_otag_id(h, TAG_I, "Em", n); |
|
return 1; |
|
} |
|
|
if (MDOC_BLOCK != n->type) |
static int |
return; |
mdoc_d1_pre(MDOC_ARGS) |
if (MDOC_Enum != a2list(n)) |
{ |
return; |
switch (n->type) { |
|
case ROFFT_BLOCK: |
ord = SLIST_FIRST(&h->ords); |
html_close_paragraph(h); |
assert(ord); |
return 1; |
SLIST_REMOVE_HEAD(&h->ords, entry); |
case ROFFT_HEAD: |
free(ord); |
return 0; |
|
case ROFFT_BODY: |
|
break; |
|
default: |
|
abort(); |
|
} |
|
print_otag_id(h, TAG_DIV, "Bd Bd-indent", n); |
|
if (n->tok == MDOC_Dl) |
|
print_otag(h, TAG_CODE, "c", "Li"); |
|
return 1; |
} |
} |
|
|
|
|
static int |
static int |
mdoc_it_pre(MDOC_ARGS) |
mdoc_sx_pre(MDOC_ARGS) |
{ |
{ |
int type; |
char *id; |
|
|
if (MDOC_BLOCK == n->type) |
id = html_make_id(n, 0); |
type = a2list(n->parent->parent); |
print_otag(h, TAG_A, "chR", "Sx", id); |
else |
free(id); |
type = a2list(n->parent->parent->parent); |
return 1; |
|
|
return(mdoc_tbl_pre(m, n, h, type)); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_ex_pre(MDOC_ARGS) |
mdoc_bd_pre(MDOC_ARGS) |
{ |
{ |
const struct mdoc_node *nn; |
char buf[20]; |
struct tag *t; |
struct roff_node *nn; |
struct htmlpair tag; |
int comp; |
|
|
print_text(h, "The"); |
switch (n->type) { |
|
case ROFFT_BLOCK: |
|
html_close_paragraph(h); |
|
return 1; |
|
case ROFFT_HEAD: |
|
return 0; |
|
case ROFFT_BODY: |
|
break; |
|
default: |
|
abort(); |
|
} |
|
|
tag.key = ATTR_CLASS; |
/* Handle preceding whitespace. */ |
tag.val = "utility"; |
|
|
|
for (nn = n->child; nn; nn = nn->next) { |
comp = n->norm->Bd.comp; |
t = print_otag(h, TAG_SPAN, 1, &tag); |
for (nn = n; nn != NULL && comp == 0; nn = nn->parent) { |
print_text(h, nn->string); |
if (nn->type != ROFFT_BLOCK) |
print_tagq(h, t); |
continue; |
|
if (nn->tok == MDOC_Sh || nn->tok == MDOC_Ss) |
|
comp = 1; |
|
if (roff_node_prev(nn) != NULL) |
|
break; |
|
} |
|
(void)strlcpy(buf, "Bd", sizeof(buf)); |
|
if (comp == 0) |
|
(void)strlcat(buf, " Pp", sizeof(buf)); |
|
|
h->flags |= HTML_NOSPACE; |
/* Handle the -offset argument. */ |
|
|
if (nn->next && NULL == nn->next->next) |
if (n->norm->Bd.offs != NULL && |
print_text(h, ", and"); |
strcmp(n->norm->Bd.offs, "left") != 0) |
else if (nn->next) |
(void)strlcat(buf, " Bd-indent", sizeof(buf)); |
print_text(h, ","); |
|
else |
|
h->flags &= ~HTML_NOSPACE; |
|
} |
|
|
|
if (n->child->next) |
if (n->norm->Bd.type == DISP_literal) |
print_text(h, "utilities exit"); |
(void)strlcat(buf, " Li", sizeof(buf)); |
else |
|
print_text(h, "utility exits"); |
|
|
|
print_text(h, "0 on success, and >0 if an error occurs."); |
print_otag_id(h, TAG_DIV, buf, n); |
return(0); |
return 1; |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_dq_pre(MDOC_ARGS) |
mdoc_pa_pre(MDOC_ARGS) |
{ |
{ |
|
print_otag(h, TAG_SPAN, "c", "Pa"); |
if (MDOC_BODY != n->type) |
return 1; |
return(1); |
|
print_text(h, "\\(lq"); |
|
h->flags |= HTML_NOSPACE; |
|
return(1); |
|
} |
} |
|
|
|
static int |
/* ARGSUSED */ |
mdoc_ad_pre(MDOC_ARGS) |
static void |
|
mdoc_dq_post(MDOC_ARGS) |
|
{ |
{ |
|
print_otag(h, TAG_SPAN, "c", "Ad"); |
if (MDOC_BODY != n->type) |
return 1; |
return; |
|
h->flags |= HTML_NOSPACE; |
|
print_text(h, "\\(rq"); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_pq_pre(MDOC_ARGS) |
mdoc_an_pre(MDOC_ARGS) |
{ |
{ |
|
if (n->norm->An.auth == AUTH_split) { |
|
h->flags &= ~HTML_NOSPLIT; |
|
h->flags |= HTML_SPLIT; |
|
return 0; |
|
} |
|
if (n->norm->An.auth == AUTH_nosplit) { |
|
h->flags &= ~HTML_SPLIT; |
|
h->flags |= HTML_NOSPLIT; |
|
return 0; |
|
} |
|
|
if (MDOC_BODY != n->type) |
if (h->flags & HTML_SPLIT) |
return(1); |
print_otag(h, TAG_BR, ""); |
print_text(h, "\\&("); |
|
h->flags |= HTML_NOSPACE; |
|
return(1); |
|
} |
|
|
|
|
if (n->sec == SEC_AUTHORS && ! (h->flags & HTML_NOSPLIT)) |
|
h->flags |= HTML_SPLIT; |
|
|
/* ARGSUSED */ |
print_otag(h, TAG_SPAN, "c", "An"); |
static void |
return 1; |
mdoc_pq_post(MDOC_ARGS) |
|
{ |
|
|
|
if (MDOC_BODY != n->type) |
|
return; |
|
print_text(h, ")"); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_sq_pre(MDOC_ARGS) |
mdoc_cd_pre(MDOC_ARGS) |
{ |
{ |
|
synopsis_pre(h, n); |
if (MDOC_BODY != n->type) |
print_otag(h, TAG_CODE, "c", "Cd"); |
return(1); |
return 1; |
print_text(h, "\\(oq"); |
|
h->flags |= HTML_NOSPACE; |
|
return(1); |
|
} |
} |
|
|
|
static int |
/* ARGSUSED */ |
mdoc_fa_pre(MDOC_ARGS) |
static void |
|
mdoc_sq_post(MDOC_ARGS) |
|
{ |
{ |
|
const struct roff_node *nn; |
|
struct tag *t; |
|
|
if (MDOC_BODY != n->type) |
if (n->parent->tok != MDOC_Fo) { |
return; |
print_otag(h, TAG_VAR, "c", "Fa"); |
h->flags |= HTML_NOSPACE; |
return 1; |
print_text(h, "\\(aq"); |
} |
|
for (nn = n->child; nn != NULL; nn = nn->next) { |
|
t = print_otag(h, TAG_VAR, "c", "Fa"); |
|
print_text(h, nn->string); |
|
print_tagq(h, t); |
|
if (nn->next != NULL) { |
|
h->flags |= HTML_NOSPACE; |
|
print_text(h, ","); |
|
} |
|
} |
|
if (n->child != NULL && |
|
(nn = roff_node_next(n)) != NULL && |
|
nn->tok == MDOC_Fa) { |
|
h->flags |= HTML_NOSPACE; |
|
print_text(h, ","); |
|
} |
|
return 0; |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_em_pre(MDOC_ARGS) |
mdoc_fd_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
struct tag *t; |
|
char *buf, *cp; |
|
|
tag.key = ATTR_CLASS; |
synopsis_pre(h, n); |
tag.val = "emph"; |
|
|
|
print_otag(h, TAG_SPAN, 1, &tag); |
if (NULL == (n = n->child)) |
return(1); |
return 0; |
} |
|
|
|
|
assert(n->type == ROFFT_TEXT); |
|
|
/* ARGSUSED */ |
if (strcmp(n->string, "#include")) { |
static int |
print_otag(h, TAG_CODE, "c", "Fd"); |
mdoc_d1_pre(MDOC_ARGS) |
return 1; |
{ |
} |
struct htmlpair tag[2]; |
|
|
|
if (MDOC_BLOCK != n->type) |
print_otag(h, TAG_CODE, "c", "In"); |
return(1); |
print_text(h, n->string); |
|
|
buffmt("margin-left: %dem;", INDENT); |
if (NULL != (n = n->next)) { |
|
assert(n->type == ROFFT_TEXT); |
|
|
tag[0].key = ATTR_CLASS; |
if (h->base_includes) { |
tag[0].val = "lit-block"; |
cp = n->string; |
tag[1].key = ATTR_STYLE; |
if (*cp == '<' || *cp == '"') |
tag[1].val = buf; |
cp++; |
|
buf = mandoc_strdup(cp); |
|
cp = strchr(buf, '\0') - 1; |
|
if (cp >= buf && (*cp == '>' || *cp == '"')) |
|
*cp = '\0'; |
|
t = print_otag(h, TAG_A, "chI", "In", buf); |
|
free(buf); |
|
} else |
|
t = print_otag(h, TAG_A, "c", "In"); |
|
|
print_otag(h, TAG_DIV, 2, tag); |
print_text(h, n->string); |
return(1); |
print_tagq(h, t); |
} |
|
|
|
|
n = n->next; |
|
} |
|
|
/* ARGSUSED */ |
for ( ; n; n = n->next) { |
static int |
assert(n->type == ROFFT_TEXT); |
mdoc_sx_pre(MDOC_ARGS) |
print_text(h, n->string); |
{ |
|
struct htmlpair tag[2]; |
|
const struct mdoc_node *nn; |
|
|
|
bufcat("#"); |
|
for (nn = n->child; nn; nn = nn->next) { |
|
bufcat(nn->string); |
|
if (nn->next) |
|
bufcat(" "); |
|
} |
} |
|
|
tag[0].key = ATTR_HREF; |
return 0; |
tag[0].val = buf; |
|
tag[1].key = ATTR_CLASS; |
|
tag[1].val = "link-sec"; |
|
|
|
print_otag(h, TAG_A, 2, tag); |
|
return(1); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_aq_pre(MDOC_ARGS) |
mdoc_vt_pre(MDOC_ARGS) |
{ |
{ |
|
if (n->type == ROFFT_BLOCK) { |
|
synopsis_pre(h, n); |
|
return 1; |
|
} else if (n->type == ROFFT_ELEM) { |
|
synopsis_pre(h, n); |
|
} else if (n->type == ROFFT_HEAD) |
|
return 0; |
|
|
if (MDOC_BODY != n->type) |
print_otag(h, TAG_VAR, "c", "Vt"); |
return(1); |
return 1; |
print_text(h, "\\(la"); |
|
h->flags |= HTML_NOSPACE; |
|
return(1); |
|
} |
} |
|
|
|
static int |
/* ARGSUSED */ |
mdoc_ft_pre(MDOC_ARGS) |
static void |
|
mdoc_aq_post(MDOC_ARGS) |
|
{ |
{ |
|
synopsis_pre(h, n); |
if (MDOC_BODY != n->type) |
print_otag(h, TAG_VAR, "c", "Ft"); |
return; |
return 1; |
h->flags |= HTML_NOSPACE; |
|
print_text(h, "\\(ra"); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_bd_pre(MDOC_ARGS) |
mdoc_fn_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag[2]; |
struct tag *t; |
int t, c, o, i; |
char nbuf[BUFSIZ]; |
const struct mdoc_node *bl; |
const char *sp, *ep; |
|
int sz, pretty; |
|
|
/* FIXME: fmt_vspace() shit. */ |
pretty = NODE_SYNPRETTY & n->flags; |
|
synopsis_pre(h, n); |
|
|
if (MDOC_BLOCK == n->type) |
/* Split apart into type and name. */ |
bl = n; |
assert(n->child->string); |
else if (MDOC_HEAD == n->type) |
sp = n->child->string; |
return(0); |
|
else |
|
bl = n->parent; |
|
|
|
t = o = c = 0; |
ep = strchr(sp, ' '); |
|
if (NULL != ep) { |
|
t = print_otag(h, TAG_VAR, "c", "Ft"); |
|
|
for (i = 0; i < (int)bl->args->argc; i++) |
while (ep) { |
switch (bl->args->argv[i].arg) { |
sz = MIN((int)(ep - sp), BUFSIZ - 1); |
case (MDOC_Offset): |
(void)memcpy(nbuf, sp, (size_t)sz); |
assert(bl->args->argv[i].sz); |
nbuf[sz] = '\0'; |
o = a2offs (bl->args->argv[i].value[0]); |
print_text(h, nbuf); |
break; |
sp = ++ep; |
case (MDOC_Compact): |
ep = strchr(sp, ' '); |
c = 1; |
|
break; |
|
case (MDOC_Ragged): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Filled): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Unfilled): |
|
/* FALLTHROUGH */ |
|
case (MDOC_Literal): |
|
t = bl->args->argv[i].arg; |
|
break; |
|
} |
} |
|
print_tagq(h, t); |
if (MDOC_BLOCK == n->type) { |
|
if (o) |
|
buffmt("margin-left: %dem;", o); |
|
bufcat("margin-top: 1em;"); |
|
tag[0].key = ATTR_STYLE; |
|
tag[0].val = buf; |
|
print_otag(h, TAG_DIV, 1, tag); |
|
return(1); |
|
} |
} |
|
|
switch (t) { |
t = print_otag_id(h, TAG_CODE, "Fn", n); |
case (MDOC_Unfilled): |
|
case (MDOC_Literal): |
|
break; |
|
default: |
|
return(1); |
|
} |
|
|
|
bufcat("white-space: pre;"); |
if (sp) |
tag[0].key = ATTR_STYLE; |
print_text(h, sp); |
tag[0].val = buf; |
|
tag[1].key = ATTR_CLASS; |
|
tag[1].val = "lit-block"; |
|
|
|
print_otag(h, TAG_DIV, 2, tag); |
print_tagq(h, t); |
|
|
for (n = n->child; n; n = n->next) { |
h->flags |= HTML_NOSPACE; |
|
print_text(h, "("); |
|
h->flags |= HTML_NOSPACE; |
|
|
|
for (n = n->child->next; n; n = n->next) { |
|
if (NODE_SYNPRETTY & n->flags) |
|
t = print_otag(h, TAG_VAR, "cs", "Fa", |
|
"white-space", "nowrap"); |
|
else |
|
t = print_otag(h, TAG_VAR, "c", "Fa"); |
|
print_text(h, n->string); |
|
print_tagq(h, t); |
|
if (n->next) { |
|
h->flags |= HTML_NOSPACE; |
|
print_text(h, ","); |
|
} |
|
} |
|
|
|
h->flags |= HTML_NOSPACE; |
|
print_text(h, ")"); |
|
|
|
if (pretty) { |
h->flags |= HTML_NOSPACE; |
h->flags |= HTML_NOSPACE; |
print_mdoc_node(m, n, h); |
print_text(h, ";"); |
if (n->next) |
|
print_text(h, "\n"); |
|
} |
} |
|
|
return(0); |
return 0; |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_pa_pre(MDOC_ARGS) |
mdoc_sm_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
|
|
|
tag.key = ATTR_CLASS; |
if (NULL == n->child) |
tag.val = "file"; |
h->flags ^= HTML_NONOSPACE; |
|
else if (0 == strcmp("on", n->child->string)) |
|
h->flags &= ~HTML_NONOSPACE; |
|
else |
|
h->flags |= HTML_NONOSPACE; |
|
|
print_otag(h, TAG_SPAN, 1, &tag); |
if ( ! (HTML_NONOSPACE & h->flags)) |
return(1); |
h->flags &= ~HTML_NOSPACE; |
|
|
|
return 0; |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_qq_pre(MDOC_ARGS) |
mdoc_skip_pre(MDOC_ARGS) |
{ |
{ |
|
|
if (MDOC_BODY != n->type) |
return 0; |
return(1); |
|
print_text(h, "\\*q"); |
|
h->flags |= HTML_NOSPACE; |
|
return(1); |
|
} |
} |
|
|
|
static int |
/* ARGSUSED */ |
mdoc_pp_pre(MDOC_ARGS) |
static void |
|
mdoc_qq_post(MDOC_ARGS) |
|
{ |
{ |
|
char *id; |
|
|
if (MDOC_BODY != n->type) |
if (n->flags & NODE_NOFILL) { |
return; |
print_endline(h); |
h->flags |= HTML_NOSPACE; |
if (n->flags & NODE_ID) |
print_text(h, "\\*q"); |
mdoc_tg_pre(meta, n, h); |
|
else { |
|
h->col = 1; |
|
print_endline(h); |
|
} |
|
} else { |
|
html_close_paragraph(h); |
|
id = n->flags & NODE_ID ? html_make_id(n, 1) : NULL; |
|
print_otag(h, TAG_P, "ci", "Pp", id); |
|
free(id); |
|
} |
|
return 0; |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_ad_pre(MDOC_ARGS) |
mdoc_lk_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
const struct roff_node *link, *descr, *punct; |
|
struct tag *t; |
|
|
tag.key = ATTR_CLASS; |
if ((link = n->child) == NULL) |
tag.val = "addr"; |
return 0; |
print_otag(h, TAG_SPAN, 1, &tag); |
|
return(1); |
|
} |
|
|
|
|
/* Find beginning of trailing punctuation. */ |
|
punct = n->last; |
|
while (punct != link && punct->flags & NODE_DELIMC) |
|
punct = punct->prev; |
|
punct = punct->next; |
|
|
/* ARGSUSED */ |
/* Link target and link text. */ |
static int |
descr = link->next; |
mdoc_an_pre(MDOC_ARGS) |
if (descr == punct) |
{ |
descr = link; /* no text */ |
struct htmlpair tag; |
t = print_otag(h, TAG_A, "ch", "Lk", link->string); |
|
do { |
|
if (descr->flags & (NODE_DELIMC | NODE_DELIMO)) |
|
h->flags |= HTML_NOSPACE; |
|
print_text(h, descr->string); |
|
descr = descr->next; |
|
} while (descr != punct); |
|
print_tagq(h, t); |
|
|
tag.key = ATTR_CLASS; |
/* Trailing punctuation. */ |
tag.val = "author"; |
while (punct != NULL) { |
print_otag(h, TAG_SPAN, 1, &tag); |
h->flags |= HTML_NOSPACE; |
return(1); |
print_text(h, punct->string); |
|
punct = punct->next; |
|
} |
|
return 0; |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_cd_pre(MDOC_ARGS) |
mdoc_mt_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
struct tag *t; |
|
char *cp; |
|
|
tag.key = ATTR_CLASS; |
for (n = n->child; n; n = n->next) { |
tag.val = "config"; |
assert(n->type == ROFFT_TEXT); |
print_otag(h, TAG_SPAN, 1, &tag); |
mandoc_asprintf(&cp, "mailto:%s", n->string); |
return(1); |
t = print_otag(h, TAG_A, "ch", "Mt", cp); |
|
print_text(h, n->string); |
|
print_tagq(h, t); |
|
free(cp); |
|
} |
|
return 0; |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_dv_pre(MDOC_ARGS) |
mdoc_fo_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
struct tag *t; |
|
|
tag.key = ATTR_CLASS; |
switch (n->type) { |
tag.val = "define"; |
case ROFFT_BLOCK: |
print_otag(h, TAG_SPAN, 1, &tag); |
synopsis_pre(h, n); |
return(1); |
return 1; |
|
case ROFFT_HEAD: |
|
if (n->child != NULL) { |
|
t = print_otag_id(h, TAG_CODE, "Fn", n); |
|
print_text(h, n->child->string); |
|
print_tagq(h, t); |
|
} |
|
return 0; |
|
case ROFFT_BODY: |
|
h->flags |= HTML_NOSPACE; |
|
print_text(h, "("); |
|
h->flags |= HTML_NOSPACE; |
|
return 1; |
|
default: |
|
abort(); |
|
} |
} |
} |
|
|
|
static void |
/* ARGSUSED */ |
mdoc_fo_post(MDOC_ARGS) |
static int |
|
mdoc_ev_pre(MDOC_ARGS) |
|
{ |
{ |
struct htmlpair tag; |
if (n->type != ROFFT_BODY) |
|
return; |
tag.key = ATTR_CLASS; |
h->flags |= HTML_NOSPACE; |
tag.val = "env"; |
print_text(h, ")"); |
print_otag(h, TAG_SPAN, 1, &tag); |
h->flags |= HTML_NOSPACE; |
return(1); |
print_text(h, ";"); |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_er_pre(MDOC_ARGS) |
mdoc_in_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
struct tag *t; |
|
|
tag.key = ATTR_CLASS; |
synopsis_pre(h, n); |
tag.val = "errno"; |
print_otag(h, TAG_CODE, "c", "In"); |
print_otag(h, TAG_SPAN, 1, &tag); |
|
return(1); |
|
} |
|
|
|
|
/* |
|
* The first argument of the `In' gets special treatment as |
|
* being a linked value. Subsequent values are printed |
|
* afterward. groff does similarly. This also handles the case |
|
* of no children. |
|
*/ |
|
|
/* ARGSUSED */ |
if (NODE_SYNPRETTY & n->flags && NODE_LINE & n->flags) |
static int |
print_text(h, "#include"); |
mdoc_fa_pre(MDOC_ARGS) |
|
{ |
|
const struct mdoc_node *nn; |
|
struct htmlpair tag; |
|
struct tag *t; |
|
|
|
tag.key = ATTR_CLASS; |
print_text(h, "<"); |
tag.val = "farg"; |
h->flags |= HTML_NOSPACE; |
|
|
if (n->parent->tok != MDOC_Fo) { |
if (NULL != (n = n->child)) { |
print_otag(h, TAG_SPAN, 1, &tag); |
assert(n->type == ROFFT_TEXT); |
return(1); |
|
} |
|
|
|
for (nn = n->child; nn; nn = nn->next) { |
if (h->base_includes) |
t = print_otag(h, TAG_SPAN, 1, &tag); |
t = print_otag(h, TAG_A, "chI", "In", n->string); |
print_text(h, nn->string); |
else |
|
t = print_otag(h, TAG_A, "c", "In"); |
|
print_text(h, n->string); |
print_tagq(h, t); |
print_tagq(h, t); |
if (nn->next) |
|
print_text(h, ","); |
n = n->next; |
} |
} |
|
|
if (n->child && n->next && n->next->tok == MDOC_Fa) |
h->flags |= HTML_NOSPACE; |
print_text(h, ","); |
print_text(h, ">"); |
|
|
return(0); |
for ( ; n; n = n->next) { |
|
assert(n->type == ROFFT_TEXT); |
|
print_text(h, n->string); |
|
} |
|
return 0; |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_fd_pre(MDOC_ARGS) |
mdoc_va_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
print_otag(h, TAG_VAR, "c", "Va"); |
|
return 1; |
if (SEC_SYNOPSIS == n->sec) { |
|
if (n->next && MDOC_Fd != n->next->tok) { |
|
tag.key = ATTR_STYLE; |
|
tag.val = "margin-bottom: 1em;"; |
|
print_otag(h, TAG_DIV, 1, &tag); |
|
} else |
|
print_otag(h, TAG_DIV, 0, NULL); |
|
} |
|
|
|
tag.key = ATTR_CLASS; |
|
tag.val = "macro"; |
|
print_otag(h, TAG_SPAN, 1, &tag); |
|
return(1); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_vt_pre(MDOC_ARGS) |
mdoc_ap_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
h->flags |= HTML_NOSPACE; |
|
print_text(h, "\\(aq"); |
if (SEC_SYNOPSIS == n->sec) { |
h->flags |= HTML_NOSPACE; |
if (n->next && MDOC_Vt != n->next->tok) { |
return 1; |
tag.key = ATTR_STYLE; |
|
tag.val = "margin-bottom: 1em;"; |
|
print_otag(h, TAG_DIV, 1, &tag); |
|
} else |
|
print_otag(h, TAG_DIV, 0, NULL); |
|
} |
|
|
|
tag.key = ATTR_CLASS; |
|
tag.val = "type"; |
|
print_otag(h, TAG_SPAN, 1, &tag); |
|
return(1); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_ft_pre(MDOC_ARGS) |
mdoc_bf_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
const char *cattr; |
|
|
if (SEC_SYNOPSIS == n->sec) { |
switch (n->type) { |
if (n->prev && MDOC_Fo == n->prev->tok) { |
case ROFFT_BLOCK: |
tag.key = ATTR_STYLE; |
html_close_paragraph(h); |
tag.val = "margin-top: 1em;"; |
return 1; |
print_otag(h, TAG_DIV, 1, &tag); |
case ROFFT_HEAD: |
} else |
return 0; |
print_otag(h, TAG_DIV, 0, NULL); |
case ROFFT_BODY: |
|
break; |
|
default: |
|
abort(); |
} |
} |
|
|
tag.key = ATTR_CLASS; |
if (FONT_Em == n->norm->Bf.font) |
tag.val = "type"; |
cattr = "Bf Em"; |
print_otag(h, TAG_SPAN, 1, &tag); |
else if (FONT_Sy == n->norm->Bf.font) |
return(1); |
cattr = "Bf Sy"; |
|
else if (FONT_Li == n->norm->Bf.font) |
|
cattr = "Bf Li"; |
|
else |
|
cattr = "Bf No"; |
|
|
|
/* Cannot use TAG_SPAN because it may contain blocks. */ |
|
print_otag(h, TAG_DIV, "c", cattr); |
|
return 1; |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_fn_pre(MDOC_ARGS) |
mdoc_igndelim_pre(MDOC_ARGS) |
{ |
{ |
struct tag *t; |
h->flags |= HTML_IGNDELIM; |
struct htmlpair tag; |
return 1; |
const struct mdoc_node *nn; |
} |
|
|
if (SEC_SYNOPSIS == n->sec) { |
static void |
if (n->next) { |
mdoc_pf_post(MDOC_ARGS) |
tag.key = ATTR_STYLE; |
{ |
tag.val = "margin-bottom: 1em"; |
if ( ! (n->next == NULL || n->next->flags & NODE_LINE)) |
print_otag(h, TAG_DIV, 1, &tag); |
h->flags |= HTML_NOSPACE; |
} else |
|
print_otag(h, TAG_DIV, 0, NULL); |
|
} |
|
|
|
tag.key = ATTR_CLASS; |
|
tag.val = "type"; |
|
|
|
/* FIXME: can be "type funcname" "type varname"... */ |
|
|
|
t = print_otag(h, TAG_SPAN, 1, &tag); |
|
print_text(h, n->child->string); |
|
print_tagq(h, t); |
|
|
|
h->flags |= HTML_NOSPACE; |
|
print_text(h, "("); |
|
|
|
for (nn = n->child->next; nn; nn = nn->next) { |
|
tag.key = ATTR_CLASS; |
|
tag.val = "farg"; |
|
t = print_otag(h, TAG_SPAN, 1, &tag); |
|
print_text(h, nn->string); |
|
print_tagq(h, t); |
|
if (nn->next) |
|
print_text(h, ","); |
|
} |
|
|
|
print_text(h, ")"); |
|
|
|
if (SEC_SYNOPSIS == n->sec) |
|
print_text(h, ";"); |
|
|
|
return(0); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_sp_pre(MDOC_ARGS) |
mdoc_rs_pre(MDOC_ARGS) |
{ |
{ |
int len; |
switch (n->type) { |
struct htmlpair tag; |
case ROFFT_BLOCK: |
|
if (n->sec == SEC_SEE_ALSO) |
switch (n->tok) { |
html_close_paragraph(h); |
case (MDOC_sp): |
|
len = n->child ? atoi(n->child->string) : 1; |
|
break; |
break; |
case (MDOC_br): |
case ROFFT_HEAD: |
len = 0; |
return 0; |
|
case ROFFT_BODY: |
|
if (n->sec == SEC_SEE_ALSO) |
|
print_otag(h, TAG_P, "c", "Pp"); |
|
print_otag(h, TAG_CITE, "c", "Rs"); |
break; |
break; |
default: |
default: |
len = 1; |
abort(); |
break; |
|
} |
} |
|
return 1; |
buffmt("height: %dem", len); |
|
tag.key = ATTR_STYLE; |
|
tag.val = buf; |
|
print_otag(h, TAG_DIV, 1, &tag); |
|
return(1); |
|
|
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_brq_pre(MDOC_ARGS) |
mdoc_no_pre(MDOC_ARGS) |
{ |
{ |
|
print_otag_id(h, TAG_SPAN, roff_name[n->tok], n); |
|
return 1; |
|
} |
|
|
if (MDOC_BODY != n->type) |
static int |
return(1); |
mdoc_sy_pre(MDOC_ARGS) |
print_text(h, "\\(lC"); |
{ |
h->flags |= HTML_NOSPACE; |
print_otag_id(h, TAG_B, "Sy", n); |
return(1); |
return 1; |
} |
} |
|
|
|
static int |
/* ARGSUSED */ |
mdoc_lb_pre(MDOC_ARGS) |
static void |
|
mdoc_brq_post(MDOC_ARGS) |
|
{ |
{ |
|
if (n->sec == SEC_LIBRARY && |
|
n->flags & NODE_LINE && |
|
roff_node_prev(n) != NULL) |
|
print_otag(h, TAG_BR, ""); |
|
|
if (MDOC_BODY != n->type) |
print_otag(h, TAG_SPAN, "c", "Lb"); |
return; |
return 1; |
h->flags |= HTML_NOSPACE; |
|
print_text(h, "\\(rC"); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_lk_pre(MDOC_ARGS) |
mdoc__x_pre(MDOC_ARGS) |
{ |
{ |
const struct mdoc_node *nn; |
struct roff_node *nn; |
struct htmlpair tag[2]; |
const char *cattr; |
|
enum htmltag t; |
|
|
nn = n->child; |
t = TAG_SPAN; |
|
|
tag[0].key = ATTR_CLASS; |
switch (n->tok) { |
tag[0].val = "link-ext"; |
case MDOC__A: |
tag[1].key = ATTR_HREF; |
cattr = "RsA"; |
tag[1].val = nn->string; |
if ((nn = roff_node_prev(n)) != NULL && nn->tok == MDOC__A && |
|
((nn = roff_node_next(n)) == NULL || nn->tok != MDOC__A)) |
|
print_text(h, "and"); |
|
break; |
|
case MDOC__B: |
|
t = TAG_I; |
|
cattr = "RsB"; |
|
break; |
|
case MDOC__C: |
|
cattr = "RsC"; |
|
break; |
|
case MDOC__D: |
|
cattr = "RsD"; |
|
break; |
|
case MDOC__I: |
|
t = TAG_I; |
|
cattr = "RsI"; |
|
break; |
|
case MDOC__J: |
|
t = TAG_I; |
|
cattr = "RsJ"; |
|
break; |
|
case MDOC__N: |
|
cattr = "RsN"; |
|
break; |
|
case MDOC__O: |
|
cattr = "RsO"; |
|
break; |
|
case MDOC__P: |
|
cattr = "RsP"; |
|
break; |
|
case MDOC__Q: |
|
cattr = "RsQ"; |
|
break; |
|
case MDOC__R: |
|
cattr = "RsR"; |
|
break; |
|
case MDOC__T: |
|
cattr = "RsT"; |
|
break; |
|
case MDOC__U: |
|
print_otag(h, TAG_A, "ch", "RsU", n->child->string); |
|
return 1; |
|
case MDOC__V: |
|
cattr = "RsV"; |
|
break; |
|
default: |
|
abort(); |
|
} |
|
|
print_otag(h, TAG_A, 2, tag); |
print_otag(h, t, "c", cattr); |
|
return 1; |
if (NULL == nn->next) |
|
return(1); |
|
|
|
for (nn = nn->next; nn; nn = nn->next) |
|
print_text(h, nn->string); |
|
|
|
return(0); |
|
} |
} |
|
|
|
static void |
/* ARGSUSED */ |
mdoc__x_post(MDOC_ARGS) |
static int |
|
mdoc_mt_pre(MDOC_ARGS) |
|
{ |
{ |
struct htmlpair tag[2]; |
struct roff_node *nn; |
struct tag *t; |
|
const struct mdoc_node *nn; |
|
|
|
tag[0].key = ATTR_CLASS; |
if (n->tok == MDOC__A && |
tag[0].val = "link-mail"; |
(nn = roff_node_next(n)) != NULL && nn->tok == MDOC__A && |
|
((nn = roff_node_next(nn)) == NULL || nn->tok != MDOC__A) && |
|
((nn = roff_node_prev(n)) == NULL || nn->tok != MDOC__A)) |
|
return; |
|
|
for (nn = n->child; nn; nn = nn->next) { |
/* TODO: %U */ |
bufinit(); |
|
bufcat("mailto:"); |
|
bufcat(nn->string); |
|
|
|
tag[1].key = ATTR_HREF; |
if (n->parent == NULL || n->parent->tok != MDOC_Rs) |
tag[1].val = buf; |
return; |
|
|
t = print_otag(h, TAG_A, 2, tag); |
h->flags |= HTML_NOSPACE; |
print_text(h, nn->string); |
print_text(h, roff_node_next(n) ? "," : "."); |
print_tagq(h, t); |
|
} |
|
|
|
return(0); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_fo_pre(MDOC_ARGS) |
mdoc_bk_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
|
|
|
if (MDOC_BODY == n->type) { |
switch (n->type) { |
h->flags |= HTML_NOSPACE; |
case ROFFT_BLOCK: |
print_text(h, "("); |
break; |
h->flags |= HTML_NOSPACE; |
case ROFFT_HEAD: |
return(1); |
return 0; |
} else if (MDOC_BLOCK == n->type) |
case ROFFT_BODY: |
return(1); |
if (n->parent->args != NULL || n->prev->child == NULL) |
|
h->flags |= HTML_PREKEEP; |
|
break; |
|
default: |
|
abort(); |
|
} |
|
|
tag.key = ATTR_CLASS; |
return 1; |
tag.val = "fname"; |
|
print_otag(h, TAG_SPAN, 1, &tag); |
|
return(1); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static void |
static void |
mdoc_fo_post(MDOC_ARGS) |
mdoc_bk_post(MDOC_ARGS) |
{ |
{ |
if (MDOC_BODY != n->type) |
|
return; |
if (n->type == ROFFT_BODY) |
h->flags |= HTML_NOSPACE; |
h->flags &= ~(HTML_KEEP | HTML_PREKEEP); |
print_text(h, ")"); |
|
h->flags |= HTML_NOSPACE; |
|
print_text(h, ";"); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_in_pre(MDOC_ARGS) |
mdoc_quote_pre(MDOC_ARGS) |
{ |
{ |
const struct mdoc_node *nn; |
if (n->type != ROFFT_BODY) |
struct htmlpair tag; |
return 1; |
|
|
if (SEC_SYNOPSIS == n->sec) { |
switch (n->tok) { |
if (n->next && MDOC_In != n->next->tok) { |
case MDOC_Ao: |
tag.key = ATTR_STYLE; |
case MDOC_Aq: |
tag.val = "margin-bottom: 1em;"; |
print_text(h, n->child != NULL && n->child->next == NULL && |
print_otag(h, TAG_DIV, 1, &tag); |
n->child->tok == MDOC_Mt ? "<" : "\\(la"); |
} else |
break; |
print_otag(h, TAG_DIV, 0, NULL); |
case MDOC_Bro: |
|
case MDOC_Brq: |
|
print_text(h, "\\(lC"); |
|
break; |
|
case MDOC_Bo: |
|
case MDOC_Bq: |
|
print_text(h, "\\(lB"); |
|
break; |
|
case MDOC_Oo: |
|
case MDOC_Op: |
|
print_text(h, "\\(lB"); |
|
/* |
|
* Give up on semantic markup for now. |
|
* We cannot use TAG_SPAN because .Oo may contain blocks. |
|
* We cannot use TAG_DIV because we might be in a |
|
* phrasing context (like .Dl or .Pp); we cannot |
|
* close out a .Pp at this point either because |
|
* that would break the line. |
|
*/ |
|
/* XXX print_otag(h, TAG_???, "c", "Op"); */ |
|
break; |
|
case MDOC_En: |
|
if (NULL == n->norm->Es || |
|
NULL == n->norm->Es->child) |
|
return 1; |
|
print_text(h, n->norm->Es->child->string); |
|
break; |
|
case MDOC_Do: |
|
case MDOC_Dq: |
|
print_text(h, "\\(lq"); |
|
break; |
|
case MDOC_Qo: |
|
case MDOC_Qq: |
|
print_text(h, "\""); |
|
break; |
|
case MDOC_Po: |
|
case MDOC_Pq: |
|
print_text(h, "("); |
|
break; |
|
case MDOC_Ql: |
|
print_text(h, "\\(oq"); |
|
h->flags |= HTML_NOSPACE; |
|
print_otag(h, TAG_CODE, "c", "Li"); |
|
break; |
|
case MDOC_So: |
|
case MDOC_Sq: |
|
print_text(h, "\\(oq"); |
|
break; |
|
default: |
|
abort(); |
} |
} |
|
|
tag.key = ATTR_CLASS; |
|
tag.val = "includes"; |
|
|
|
print_otag(h, TAG_SPAN, 1, &tag); |
|
|
|
if (SEC_SYNOPSIS == n->sec) |
|
print_text(h, "#include"); |
|
|
|
print_text(h, "<"); |
|
h->flags |= HTML_NOSPACE; |
h->flags |= HTML_NOSPACE; |
|
return 1; |
|
} |
|
|
/* XXX -- see warning in termp_in_post(). */ |
static void |
|
mdoc_quote_post(MDOC_ARGS) |
|
{ |
|
|
for (nn = n->child; nn; nn = nn->next) |
if (n->type != ROFFT_BODY && n->type != ROFFT_ELEM) |
print_mdoc_node(m, nn, h); |
return; |
|
|
h->flags |= HTML_NOSPACE; |
h->flags |= HTML_NOSPACE; |
print_text(h, ">"); |
|
|
|
return(0); |
switch (n->tok) { |
|
case MDOC_Ao: |
|
case MDOC_Aq: |
|
print_text(h, n->child != NULL && n->child->next == NULL && |
|
n->child->tok == MDOC_Mt ? ">" : "\\(ra"); |
|
break; |
|
case MDOC_Bro: |
|
case MDOC_Brq: |
|
print_text(h, "\\(rC"); |
|
break; |
|
case MDOC_Oo: |
|
case MDOC_Op: |
|
case MDOC_Bo: |
|
case MDOC_Bq: |
|
print_text(h, "\\(rB"); |
|
break; |
|
case MDOC_En: |
|
if (n->norm->Es == NULL || |
|
n->norm->Es->child == NULL || |
|
n->norm->Es->child->next == NULL) |
|
h->flags &= ~HTML_NOSPACE; |
|
else |
|
print_text(h, n->norm->Es->child->next->string); |
|
break; |
|
case MDOC_Do: |
|
case MDOC_Dq: |
|
print_text(h, "\\(rq"); |
|
break; |
|
case MDOC_Qo: |
|
case MDOC_Qq: |
|
print_text(h, "\""); |
|
break; |
|
case MDOC_Po: |
|
case MDOC_Pq: |
|
print_text(h, ")"); |
|
break; |
|
case MDOC_Ql: |
|
case MDOC_So: |
|
case MDOC_Sq: |
|
print_text(h, "\\(cq"); |
|
break; |
|
default: |
|
abort(); |
|
} |
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_ic_pre(MDOC_ARGS) |
mdoc_eo_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
|
|
|
tag.key = ATTR_CLASS; |
if (n->type != ROFFT_BODY) |
tag.val = "cmd"; |
return 1; |
|
|
print_otag(h, TAG_SPAN, 1, &tag); |
if (n->end == ENDBODY_NOT && |
return(1); |
n->parent->head->child == NULL && |
|
n->child != NULL && |
|
n->child->end != ENDBODY_NOT) |
|
print_text(h, "\\&"); |
|
else if (n->end != ENDBODY_NOT ? n->child != NULL : |
|
n->parent->head->child != NULL && (n->child != NULL || |
|
(n->parent->tail != NULL && n->parent->tail->child != NULL))) |
|
h->flags |= HTML_NOSPACE; |
|
return 1; |
} |
} |
|
|
|
static void |
/* ARGSUSED */ |
mdoc_eo_post(MDOC_ARGS) |
static int |
|
mdoc_rv_pre(MDOC_ARGS) |
|
{ |
{ |
const struct mdoc_node *nn; |
int body, tail; |
struct htmlpair tag; |
|
struct tag *t; |
|
|
|
print_otag(h, TAG_DIV, 0, NULL); |
if (n->type != ROFFT_BODY) |
|
return; |
|
|
print_text(h, "The"); |
if (n->end != ENDBODY_NOT) { |
|
h->flags &= ~HTML_NOSPACE; |
for (nn = n->child; nn; nn = nn->next) { |
return; |
tag.key = ATTR_CLASS; |
|
tag.val = "fname"; |
|
t = print_otag(h, TAG_SPAN, 1, &tag); |
|
print_text(h, nn->string); |
|
print_tagq(h, t); |
|
|
|
h->flags |= HTML_NOSPACE; |
|
if (nn->next && NULL == nn->next->next) |
|
print_text(h, "(), and"); |
|
else if (nn->next) |
|
print_text(h, "(),"); |
|
else |
|
print_text(h, "()"); |
|
} |
} |
|
|
if (n->child->next) |
body = n->child != NULL || n->parent->head->child != NULL; |
print_text(h, "functions return"); |
tail = n->parent->tail != NULL && n->parent->tail->child != NULL; |
else |
|
print_text(h, "function returns"); |
|
|
|
print_text(h, "the value 0 if successful; otherwise the value " |
if (body && tail) |
"-1 is returned and the global variable"); |
h->flags |= HTML_NOSPACE; |
|
else if ( ! tail) |
tag.key = ATTR_CLASS; |
h->flags &= ~HTML_NOSPACE; |
tag.val = "var"; |
|
t = print_otag(h, TAG_SPAN, 1, &tag); |
|
print_text(h, "errno"); |
|
print_tagq(h, t); |
|
print_text(h, "is set to indicate the error."); |
|
return(0); |
|
} |
} |
|
|
|
|
/* ARGSUSED */ |
|
static int |
static int |
mdoc_va_pre(MDOC_ARGS) |
mdoc_abort_pre(MDOC_ARGS) |
{ |
{ |
struct htmlpair tag; |
abort(); |
|
|
tag.key = ATTR_CLASS; |
|
tag.val = "var"; |
|
print_otag(h, TAG_SPAN, 1, &tag); |
|
return(1); |
|
} |
|
|
|
|
|
/* ARGSUSED */ |
|
static int |
|
mdoc_bq_pre(MDOC_ARGS) |
|
{ |
|
|
|
if (MDOC_BODY != n->type) |
|
return(1); |
|
print_text(h, "\\(lB"); |
|
h->flags |= HTML_NOSPACE; |
|
return(1); |
|
} |
|
|
|
|
|
/* ARGSUSED */ |
|
static void |
|
mdoc_bq_post(MDOC_ARGS) |
|
{ |
|
|
|
if (MDOC_BODY != n->type) |
|
return; |
|
h->flags |= HTML_NOSPACE; |
|
print_text(h, "\\(rB"); |
|
} |
} |