]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_html.c
1 /* $Id: mdoc_html.c,v 1.37 2009/10/24 05:52:13 kristaps Exp $ */
3 * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 #include <sys/types.h>
18 #include <sys/param.h>
19 #include <sys/queue.h>
37 #define MDOC_ARGS const struct mdoc_meta *m, \
38 const struct mdoc_node *n, \
42 int (*pre
)(MDOC_ARGS
);
43 void (*post
)(MDOC_ARGS
);
46 static void print_mdoc(MDOC_ARGS
);
47 static void print_mdoc_head(MDOC_ARGS
);
48 static void print_mdoc_node(MDOC_ARGS
);
49 static void print_mdoc_nodelist(MDOC_ARGS
);
51 static void a2width(const char *, struct roffsu
*);
52 static void a2offs(const char *, struct roffsu
*);
54 static int a2list(const struct mdoc_node
*);
56 static void mdoc_root_post(MDOC_ARGS
);
57 static int mdoc_root_pre(MDOC_ARGS
);
59 static void mdoc__x_post(MDOC_ARGS
);
60 static int mdoc__x_pre(MDOC_ARGS
);
61 static int mdoc_ad_pre(MDOC_ARGS
);
62 static int mdoc_an_pre(MDOC_ARGS
);
63 static int mdoc_ap_pre(MDOC_ARGS
);
64 static void mdoc_aq_post(MDOC_ARGS
);
65 static int mdoc_aq_pre(MDOC_ARGS
);
66 static int mdoc_ar_pre(MDOC_ARGS
);
67 static int mdoc_bd_pre(MDOC_ARGS
);
68 static int mdoc_bf_pre(MDOC_ARGS
);
69 static void mdoc_bl_post(MDOC_ARGS
);
70 static int mdoc_bl_pre(MDOC_ARGS
);
71 static void mdoc_bq_post(MDOC_ARGS
);
72 static int mdoc_bq_pre(MDOC_ARGS
);
73 static void mdoc_brq_post(MDOC_ARGS
);
74 static int mdoc_brq_pre(MDOC_ARGS
);
75 static int mdoc_bt_pre(MDOC_ARGS
);
76 static int mdoc_bx_pre(MDOC_ARGS
);
77 static int mdoc_cd_pre(MDOC_ARGS
);
78 static int mdoc_d1_pre(MDOC_ARGS
);
79 static void mdoc_dq_post(MDOC_ARGS
);
80 static int mdoc_dq_pre(MDOC_ARGS
);
81 static int mdoc_dv_pre(MDOC_ARGS
);
82 static int mdoc_fa_pre(MDOC_ARGS
);
83 static int mdoc_fd_pre(MDOC_ARGS
);
84 static int mdoc_fl_pre(MDOC_ARGS
);
85 static int mdoc_fn_pre(MDOC_ARGS
);
86 static int mdoc_ft_pre(MDOC_ARGS
);
87 static int mdoc_em_pre(MDOC_ARGS
);
88 static int mdoc_er_pre(MDOC_ARGS
);
89 static int mdoc_ev_pre(MDOC_ARGS
);
90 static int mdoc_ex_pre(MDOC_ARGS
);
91 static void mdoc_fo_post(MDOC_ARGS
);
92 static int mdoc_fo_pre(MDOC_ARGS
);
93 static int mdoc_ic_pre(MDOC_ARGS
);
94 static int mdoc_in_pre(MDOC_ARGS
);
95 static int mdoc_it_block_pre(MDOC_ARGS
, int, int,
96 struct roffsu
*, struct roffsu
*);
97 static int mdoc_it_head_pre(MDOC_ARGS
, int,
99 static int mdoc_it_body_pre(MDOC_ARGS
, int);
100 static int mdoc_it_pre(MDOC_ARGS
);
101 static int mdoc_lb_pre(MDOC_ARGS
);
102 static int mdoc_li_pre(MDOC_ARGS
);
103 static int mdoc_lk_pre(MDOC_ARGS
);
104 static int mdoc_mt_pre(MDOC_ARGS
);
105 static int mdoc_ms_pre(MDOC_ARGS
);
106 static int mdoc_nd_pre(MDOC_ARGS
);
107 static int mdoc_nm_pre(MDOC_ARGS
);
108 static int mdoc_ns_pre(MDOC_ARGS
);
109 static void mdoc_op_post(MDOC_ARGS
);
110 static int mdoc_op_pre(MDOC_ARGS
);
111 static int mdoc_pa_pre(MDOC_ARGS
);
112 static void mdoc_pf_post(MDOC_ARGS
);
113 static int mdoc_pf_pre(MDOC_ARGS
);
114 static void mdoc_pq_post(MDOC_ARGS
);
115 static int mdoc_pq_pre(MDOC_ARGS
);
116 static int mdoc_rs_pre(MDOC_ARGS
);
117 static int mdoc_rv_pre(MDOC_ARGS
);
118 static int mdoc_sh_pre(MDOC_ARGS
);
119 static int mdoc_sp_pre(MDOC_ARGS
);
120 static void mdoc_sq_post(MDOC_ARGS
);
121 static int mdoc_sq_pre(MDOC_ARGS
);
122 static int mdoc_ss_pre(MDOC_ARGS
);
123 static int mdoc_sx_pre(MDOC_ARGS
);
124 static int mdoc_sy_pre(MDOC_ARGS
);
125 static int mdoc_ud_pre(MDOC_ARGS
);
126 static int mdoc_va_pre(MDOC_ARGS
);
127 static int mdoc_vt_pre(MDOC_ARGS
);
128 static int mdoc_xr_pre(MDOC_ARGS
);
129 static int mdoc_xx_pre(MDOC_ARGS
);
132 extern size_t strlcpy(char *, const char *, size_t);
133 extern size_t strlcat(char *, const char *, size_t);
136 static const struct htmlmdoc mdocs
[MDOC_MAX
] = {
137 {mdoc_ap_pre
, NULL
}, /* Ap */
138 {NULL
, NULL
}, /* Dd */
139 {NULL
, NULL
}, /* Dt */
140 {NULL
, NULL
}, /* Os */
141 {mdoc_sh_pre
, NULL
}, /* Sh */
142 {mdoc_ss_pre
, NULL
}, /* Ss */
143 {mdoc_sp_pre
, NULL
}, /* Pp */
144 {mdoc_d1_pre
, NULL
}, /* D1 */
145 {mdoc_d1_pre
, NULL
}, /* Dl */
146 {mdoc_bd_pre
, NULL
}, /* Bd */
147 {NULL
, NULL
}, /* Ed */
148 {mdoc_bl_pre
, mdoc_bl_post
}, /* Bl */
149 {NULL
, NULL
}, /* El */
150 {mdoc_it_pre
, NULL
}, /* It */
151 {mdoc_ad_pre
, NULL
}, /* Ad */
152 {mdoc_an_pre
, NULL
}, /* An */
153 {mdoc_ar_pre
, NULL
}, /* Ar */
154 {mdoc_cd_pre
, NULL
}, /* Cd */
155 {mdoc_fl_pre
, NULL
}, /* Cm */
156 {mdoc_dv_pre
, NULL
}, /* Dv */
157 {mdoc_er_pre
, NULL
}, /* Er */
158 {mdoc_ev_pre
, NULL
}, /* Ev */
159 {mdoc_ex_pre
, NULL
}, /* Ex */
160 {mdoc_fa_pre
, NULL
}, /* Fa */
161 {mdoc_fd_pre
, NULL
}, /* Fd */
162 {mdoc_fl_pre
, NULL
}, /* Fl */
163 {mdoc_fn_pre
, NULL
}, /* Fn */
164 {mdoc_ft_pre
, NULL
}, /* Ft */
165 {mdoc_ic_pre
, NULL
}, /* Ic */
166 {mdoc_in_pre
, NULL
}, /* In */
167 {mdoc_li_pre
, NULL
}, /* Li */
168 {mdoc_nd_pre
, NULL
}, /* Nd */
169 {mdoc_nm_pre
, NULL
}, /* Nm */
170 {mdoc_op_pre
, mdoc_op_post
}, /* Op */
171 {NULL
, NULL
}, /* Ot */
172 {mdoc_pa_pre
, NULL
}, /* Pa */
173 {mdoc_rv_pre
, NULL
}, /* Rv */
174 {NULL
, NULL
}, /* St */
175 {mdoc_va_pre
, NULL
}, /* Va */
176 {mdoc_vt_pre
, NULL
}, /* Vt */
177 {mdoc_xr_pre
, NULL
}, /* Xr */
178 {mdoc__x_pre
, mdoc__x_post
}, /* %A */
179 {mdoc__x_pre
, mdoc__x_post
}, /* %B */
180 {mdoc__x_pre
, mdoc__x_post
}, /* %D */
181 {mdoc__x_pre
, mdoc__x_post
}, /* %I */
182 {mdoc__x_pre
, mdoc__x_post
}, /* %J */
183 {mdoc__x_pre
, mdoc__x_post
}, /* %N */
184 {mdoc__x_pre
, mdoc__x_post
}, /* %O */
185 {mdoc__x_pre
, mdoc__x_post
}, /* %P */
186 {mdoc__x_pre
, mdoc__x_post
}, /* %R */
187 {mdoc__x_pre
, mdoc__x_post
}, /* %T */
188 {mdoc__x_pre
, mdoc__x_post
}, /* %V */
189 {NULL
, NULL
}, /* Ac */
190 {mdoc_aq_pre
, mdoc_aq_post
}, /* Ao */
191 {mdoc_aq_pre
, mdoc_aq_post
}, /* Aq */
192 {NULL
, NULL
}, /* At */
193 {NULL
, NULL
}, /* Bc */
194 {mdoc_bf_pre
, NULL
}, /* Bf */
195 {mdoc_bq_pre
, mdoc_bq_post
}, /* Bo */
196 {mdoc_bq_pre
, mdoc_bq_post
}, /* Bq */
197 {mdoc_xx_pre
, NULL
}, /* Bsx */
198 {mdoc_bx_pre
, NULL
}, /* Bx */
199 {NULL
, NULL
}, /* Db */
200 {NULL
, NULL
}, /* Dc */
201 {mdoc_dq_pre
, mdoc_dq_post
}, /* Do */
202 {mdoc_dq_pre
, mdoc_dq_post
}, /* Dq */
203 {NULL
, NULL
}, /* Ec */
204 {NULL
, NULL
}, /* Ef */
205 {mdoc_em_pre
, NULL
}, /* Em */
206 {NULL
, NULL
}, /* Eo */
207 {mdoc_xx_pre
, NULL
}, /* Fx */
208 {mdoc_ms_pre
, NULL
}, /* Ms */ /* FIXME: convert to symbol? */
209 {NULL
, NULL
}, /* No */
210 {mdoc_ns_pre
, NULL
}, /* Ns */
211 {mdoc_xx_pre
, NULL
}, /* Nx */
212 {mdoc_xx_pre
, NULL
}, /* Ox */
213 {NULL
, NULL
}, /* Pc */
214 {mdoc_pf_pre
, mdoc_pf_post
}, /* Pf */
215 {mdoc_pq_pre
, mdoc_pq_post
}, /* Po */
216 {mdoc_pq_pre
, mdoc_pq_post
}, /* Pq */
217 {NULL
, NULL
}, /* Qc */
218 {mdoc_sq_pre
, mdoc_sq_post
}, /* Ql */
219 {mdoc_dq_pre
, mdoc_dq_post
}, /* Qo */
220 {mdoc_dq_pre
, mdoc_dq_post
}, /* Qq */
221 {NULL
, NULL
}, /* Re */
222 {mdoc_rs_pre
, NULL
}, /* Rs */
223 {NULL
, NULL
}, /* Sc */
224 {mdoc_sq_pre
, mdoc_sq_post
}, /* So */
225 {mdoc_sq_pre
, mdoc_sq_post
}, /* Sq */
226 {NULL
, NULL
}, /* Sm */ /* FIXME - no idea. */
227 {mdoc_sx_pre
, NULL
}, /* Sx */
228 {mdoc_sy_pre
, NULL
}, /* Sy */
229 {NULL
, NULL
}, /* Tn */
230 {mdoc_xx_pre
, NULL
}, /* Ux */
231 {NULL
, NULL
}, /* Xc */
232 {NULL
, NULL
}, /* Xo */
233 {mdoc_fo_pre
, mdoc_fo_post
}, /* Fo */
234 {NULL
, NULL
}, /* Fc */
235 {mdoc_op_pre
, mdoc_op_post
}, /* Oo */
236 {NULL
, NULL
}, /* Oc */
237 {NULL
, NULL
}, /* Bk */
238 {NULL
, NULL
}, /* Ek */
239 {mdoc_bt_pre
, NULL
}, /* Bt */
240 {NULL
, NULL
}, /* Hf */
241 {NULL
, NULL
}, /* Fr */
242 {mdoc_ud_pre
, NULL
}, /* Ud */
243 {mdoc_lb_pre
, NULL
}, /* Lb */
244 {mdoc_sp_pre
, NULL
}, /* Lp */
245 {mdoc_lk_pre
, NULL
}, /* Lk */
246 {mdoc_mt_pre
, NULL
}, /* Mt */
247 {mdoc_brq_pre
, mdoc_brq_post
}, /* Brq */
248 {mdoc_brq_pre
, mdoc_brq_post
}, /* Bro */
249 {NULL
, NULL
}, /* Brc */
250 {mdoc__x_pre
, mdoc__x_post
}, /* %C */
251 {NULL
, NULL
}, /* Es */ /* TODO */
252 {NULL
, NULL
}, /* En */ /* TODO */
253 {mdoc_xx_pre
, NULL
}, /* Dx */
254 {mdoc__x_pre
, mdoc__x_post
}, /* %Q */
255 {mdoc_sp_pre
, NULL
}, /* br */
256 {mdoc_sp_pre
, NULL
}, /* sp */
257 {mdoc__x_pre
, mdoc__x_post
}, /* %U */
262 html_mdoc(void *arg
, const struct mdoc
*m
)
267 h
= (struct html
*)arg
;
269 print_gen_doctype(h
);
270 t
= print_otag(h
, TAG_HTML
, 0, NULL
);
271 print_mdoc(mdoc_meta(m
), mdoc_node(m
), h
);
279 * Return the list type for `Bl', e.g., `Bl -column' returns
280 * MDOC_Column. This can ONLY be run for lists; it will abort() if no
281 * list type is found.
284 a2list(const struct mdoc_node
*n
)
289 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
290 switch (n
->args
->argv
[i
].arg
) {
312 return(n
->args
->argv
[i
].arg
);
323 * Calculate the scaling unit passed in a `-width' argument. This uses
324 * either a native scaling unit (e.g., 1i, 2m) or the string length of
328 a2width(const char *p
, struct roffsu
*su
)
331 if ( ! a2roffsu(p
, su
, SCALE_MAX
)) {
333 su
->scale
= (int)strlen(p
);
339 * Calculate the scaling unit passed in an `-offset' argument. This
340 * uses either a native scaling unit (e.g., 1i, 2m), one of a set of
341 * predefined strings (indent, etc.), or the string length of the value.
344 a2offs(const char *p
, struct roffsu
*su
)
347 /* FIXME: "right"? */
349 if (0 == strcmp(p
, "left"))
350 SCALE_HS_INIT(su
, 0);
351 else if (0 == strcmp(p
, "indent"))
352 SCALE_HS_INIT(su
, INDENT
);
353 else if (0 == strcmp(p
, "indent-two"))
354 SCALE_HS_INIT(su
, INDENT
* 2);
355 else if ( ! a2roffsu(p
, su
, SCALE_MAX
)) {
357 su
->scale
= (int)strlen(p
);
363 print_mdoc(MDOC_ARGS
)
368 t
= print_otag(h
, TAG_HEAD
, 0, NULL
);
369 print_mdoc_head(m
, n
, h
);
372 t
= print_otag(h
, TAG_BODY
, 0, NULL
);
374 tag
.key
= ATTR_CLASS
;
376 print_otag(h
, TAG_DIV
, 1, &tag
);
378 print_mdoc_nodelist(m
, n
, h
);
385 print_mdoc_head(MDOC_ARGS
)
390 buffmt(h
, "%s(%d)", m
->title
, m
->msec
);
398 print_otag(h
, TAG_TITLE
, 0, NULL
);
399 print_text(h
, h
->buf
);
404 print_mdoc_nodelist(MDOC_ARGS
)
407 print_mdoc_node(m
, n
, h
);
409 print_mdoc_nodelist(m
, n
->next
, h
);
414 print_mdoc_node(MDOC_ARGS
)
420 t
= SLIST_FIRST(&h
->tags
);
425 child
= mdoc_root_pre(m
, n
, h
);
428 print_text(h
, n
->string
);
431 if (mdocs
[n
->tok
].pre
)
432 child
= (*mdocs
[n
->tok
].pre
)(m
, n
, h
);
436 if (child
&& n
->child
)
437 print_mdoc_nodelist(m
, n
->child
, h
);
444 mdoc_root_post(m
, n
, h
);
449 if (mdocs
[n
->tok
].post
)
450 (*mdocs
[n
->tok
].post
)(m
, n
, h
);
458 mdoc_root_post(MDOC_ARGS
)
460 struct htmlpair tag
[2];
464 time2a(m
->date
, b
, DATESIZ
);
467 * XXX: this should use divs, but in Firefox, divs with nested
468 * divs for some reason puke when trying to put a border line
469 * below. So I use tables, instead.
472 PAIR_CLASS_INIT(&tag
[0], "footer");
473 bufcat_style(h
, "width", "100%");
474 PAIR_STYLE_INIT(&tag
[1], h
);
475 t
= print_otag(h
, TAG_TABLE
, 2, tag
);
476 tt
= print_otag(h
, TAG_TR
, 0, NULL
);
479 bufcat_style(h
, "width", "50%");
480 PAIR_STYLE_INIT(&tag
[0], h
);
481 print_otag(h
, TAG_TD
, 1, tag
);
486 bufcat_style(h
, "width", "50%");
487 bufcat_style(h
, "text-align", "right");
488 PAIR_STYLE_INIT(&tag
[0], h
);
489 print_otag(h
, TAG_TD
, 1, tag
);
490 print_text(h
, m
->os
);
497 mdoc_root_pre(MDOC_ARGS
)
499 struct htmlpair tag
[2];
501 char b
[BUFSIZ
], title
[BUFSIZ
];
503 (void)strlcpy(b
, m
->vol
, BUFSIZ
);
506 (void)strlcat(b
, " (", BUFSIZ
);
507 (void)strlcat(b
, m
->arch
, BUFSIZ
);
508 (void)strlcat(b
, ")", BUFSIZ
);
511 (void)snprintf(title
, BUFSIZ
- 1,
512 "%s(%d)", m
->title
, m
->msec
);
514 /* XXX: see note in mdoc_root_post() about divs. */
516 PAIR_CLASS_INIT(&tag
[0], "header");
517 bufcat_style(h
, "width", "100%");
518 PAIR_STYLE_INIT(&tag
[1], h
);
519 t
= print_otag(h
, TAG_TABLE
, 2, tag
);
520 tt
= print_otag(h
, TAG_TR
, 0, NULL
);
523 bufcat_style(h
, "width", "10%");
524 PAIR_STYLE_INIT(&tag
[0], h
);
525 print_otag(h
, TAG_TD
, 1, tag
);
526 print_text(h
, title
);
530 bufcat_style(h
, "text-align", "center");
531 bufcat_style(h
, "white-space", "nowrap");
532 bufcat_style(h
, "width", "80%");
533 PAIR_STYLE_INIT(&tag
[0], h
);
534 print_otag(h
, TAG_TD
, 1, tag
);
539 bufcat_style(h
, "text-align", "right");
540 bufcat_style(h
, "width", "10%");
541 PAIR_STYLE_INIT(&tag
[0], h
);
542 print_otag(h
, TAG_TD
, 1, tag
);
543 print_text(h
, title
);
551 mdoc_sh_pre(MDOC_ARGS
)
553 struct htmlpair tag
[2];
554 const struct mdoc_node
*nn
;
558 if (MDOC_BODY
== n
->type
) {
559 SCALE_HS_INIT(&su
, INDENT
);
560 bufcat_su(h
, "margin-left", &su
);
561 PAIR_CLASS_INIT(&tag
[0], "sec-body");
562 PAIR_STYLE_INIT(&tag
[1], h
);
563 print_otag(h
, TAG_DIV
, 2, tag
);
565 } else if (MDOC_BLOCK
== n
->type
) {
566 PAIR_CLASS_INIT(&tag
[0], "sec-block");
567 if (n
->prev
&& NULL
== n
->prev
->body
->child
) {
568 print_otag(h
, TAG_DIV
, 1, tag
);
572 SCALE_VS_INIT(&su
, 1);
573 bufcat_su(h
, "margin-top", &su
);
575 bufcat_su(h
, "margin-bottom", &su
);
577 PAIR_STYLE_INIT(&tag
[1], h
);
578 print_otag(h
, TAG_DIV
, 2, tag
);
583 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
584 (void)strlcat(lbuf
, nn
->string
, BUFSIZ
);
586 (void)strlcat(lbuf
, "_", BUFSIZ
);
590 * TODO: make sure there are no duplicates, as HTML does not
591 * allow for multiple `id' tags of the same name.
594 PAIR_CLASS_INIT(&tag
[0], "sec-head");
595 tag
[1].key
= ATTR_ID
;
597 print_otag(h
, TAG_DIV
, 2, tag
);
604 mdoc_ss_pre(MDOC_ARGS
)
606 struct htmlpair tag
[3];
607 const struct mdoc_node
*nn
;
611 SCALE_VS_INIT(&su
, 1);
613 if (MDOC_BODY
== n
->type
) {
614 PAIR_CLASS_INIT(&tag
[0], "ssec-body");
615 if (n
->parent
->next
&& n
->child
) {
616 bufcat_su(h
, "margin-bottom", &su
);
617 PAIR_STYLE_INIT(&tag
[1], h
);
618 print_otag(h
, TAG_DIV
, 2, tag
);
620 print_otag(h
, TAG_DIV
, 1, tag
);
622 } else if (MDOC_BLOCK
== n
->type
) {
623 PAIR_CLASS_INIT(&tag
[0], "ssec-block");
625 bufcat_su(h
, "margin-top", &su
);
626 PAIR_STYLE_INIT(&tag
[1], h
);
627 print_otag(h
, TAG_DIV
, 2, tag
);
629 print_otag(h
, TAG_DIV
, 1, tag
);
633 /* TODO: see note in mdoc_sh_pre() about duplicates. */
636 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
637 (void)strlcat(lbuf
, nn
->string
, BUFSIZ
);
639 (void)strlcat(lbuf
, "_", BUFSIZ
);
642 SCALE_HS_INIT(&su
, INDENT
- HALFINDENT
);
643 su
.scale
= -su
.scale
;
644 bufcat_su(h
, "margin-left", &su
);
646 PAIR_CLASS_INIT(&tag
[0], "ssec-head");
647 PAIR_STYLE_INIT(&tag
[1], h
);
648 tag
[2].key
= ATTR_ID
;
650 print_otag(h
, TAG_DIV
, 3, tag
);
657 mdoc_fl_pre(MDOC_ARGS
)
661 PAIR_CLASS_INIT(&tag
, "flag");
662 print_otag(h
, TAG_SPAN
, 1, &tag
);
663 if (MDOC_Fl
== n
->tok
) {
664 print_text(h
, "\\-");
665 h
->flags
|= HTML_NOSPACE
;
673 mdoc_nd_pre(MDOC_ARGS
)
677 if (MDOC_BODY
!= n
->type
)
680 /* XXX: this tag in theory can contain block elements. */
682 print_text(h
, "\\(em");
683 PAIR_CLASS_INIT(&tag
, "desc-body");
684 print_otag(h
, TAG_SPAN
, 1, &tag
);
691 mdoc_op_pre(MDOC_ARGS
)
695 if (MDOC_BODY
!= n
->type
)
698 /* XXX: this tag in theory can contain block elements. */
700 print_text(h
, "\\(lB");
701 h
->flags
|= HTML_NOSPACE
;
702 PAIR_CLASS_INIT(&tag
, "opt");
703 print_otag(h
, TAG_SPAN
, 1, &tag
);
710 mdoc_op_post(MDOC_ARGS
)
713 if (MDOC_BODY
!= n
->type
)
715 h
->flags
|= HTML_NOSPACE
;
716 print_text(h
, "\\(rB");
721 mdoc_nm_pre(MDOC_ARGS
)
725 if ( ! (HTML_NEWLINE
& h
->flags
))
726 if (SEC_SYNOPSIS
== n
->sec
) {
727 bufcat_style(h
, "clear", "both");
728 PAIR_STYLE_INIT(&tag
, h
);
729 print_otag(h
, TAG_BR
, 1, &tag
);
732 PAIR_CLASS_INIT(&tag
, "name");
733 print_otag(h
, TAG_SPAN
, 1, &tag
);
734 if (NULL
== n
->child
)
735 print_text(h
, m
->name
);
743 mdoc_xr_pre(MDOC_ARGS
)
745 struct htmlpair tag
[2];
746 const struct mdoc_node
*nn
;
748 PAIR_CLASS_INIT(&tag
[0], "link-man");
751 buffmt_man(h
, n
->child
->string
,
753 n
->child
->next
->string
: NULL
);
754 tag
[1].key
= ATTR_HREF
;
756 print_otag(h
, TAG_A
, 2, tag
);
758 print_otag(h
, TAG_A
, 1, tag
);
761 print_text(h
, nn
->string
);
763 if (NULL
== (nn
= nn
->next
))
766 h
->flags
|= HTML_NOSPACE
;
768 h
->flags
|= HTML_NOSPACE
;
769 print_text(h
, nn
->string
);
770 h
->flags
|= HTML_NOSPACE
;
778 mdoc_ns_pre(MDOC_ARGS
)
781 h
->flags
|= HTML_NOSPACE
;
788 mdoc_ar_pre(MDOC_ARGS
)
792 PAIR_CLASS_INIT(&tag
, "arg");
793 print_otag(h
, TAG_SPAN
, 1, &tag
);
800 mdoc_xx_pre(MDOC_ARGS
)
828 PAIR_CLASS_INIT(&tag
, "unix");
829 print_otag(h
, TAG_SPAN
, 1, &tag
);
837 mdoc_bx_pre(MDOC_ARGS
)
839 const struct mdoc_node
*nn
;
842 PAIR_CLASS_INIT(&tag
, "unix");
843 print_otag(h
, TAG_SPAN
, 1, &tag
);
845 for (nn
= n
->child
; nn
; nn
= nn
->next
)
846 print_mdoc_node(m
, nn
, h
);
849 h
->flags
|= HTML_NOSPACE
;
851 print_text(h
, "BSD");
858 mdoc_it_block_pre(MDOC_ARGS
, int type
, int comp
,
859 struct roffsu
*offs
, struct roffsu
*width
)
862 const struct mdoc_node
*nn
;
865 nn
= n
->parent
->parent
;
868 /* XXX: see notes in mdoc_it_pre(). */
870 if (MDOC_Column
== type
) {
871 /* Don't width-pad on the left. */
872 SCALE_HS_INIT(width
, 0);
873 /* Also disallow non-compact. */
876 if (MDOC_Diag
== type
)
877 /* Mandate non-compact with empty prior. */
878 if (n
->prev
&& NULL
== n
->prev
->body
->child
)
881 bufcat_style(h
, "clear", "both");
883 bufcat_su(h
, "margin-left", offs
);
884 if (width
->scale
> 0)
885 bufcat_su(h
, "padding-left", width
);
887 PAIR_STYLE_INIT(&tag
, h
);
889 /* Mandate compact following `Ss' and `Sh' starts. */
891 for (nn
= n
; nn
&& ! comp
; nn
= nn
->parent
) {
892 if (MDOC_BLOCK
!= nn
->type
)
894 if (MDOC_Ss
== nn
->tok
|| MDOC_Sh
== nn
->tok
)
901 SCALE_VS_INIT(&su
, 1);
902 bufcat_su(h
, "padding-top", &su
);
905 PAIR_STYLE_INIT(&tag
, h
);
906 print_otag(h
, TAG_DIV
, 1, &tag
);
913 mdoc_it_body_pre(MDOC_ARGS
, int type
)
927 * XXX: this tricks CSS into aligning the bodies with
928 * the right-padding in the head.
930 SCALE_HS_INIT(&su
, 2);
931 bufcat_su(h
, "margin-left", &su
);
932 PAIR_STYLE_INIT(&tag
, h
);
933 print_otag(h
, TAG_DIV
, 1, &tag
);
943 mdoc_it_head_pre(MDOC_ARGS
, int type
, struct roffsu
*width
)
953 print_otag(h
, TAG_DIV
, 0, NULL
);
956 bufcat_su(h
, "min-width", width
);
957 bufcat_style(h
, "clear", "none");
958 if (n
->next
&& MDOC_HEAD
== n
->next
->type
)
959 bufcat_style(h
, "float", "left");
960 PAIR_STYLE_INIT(&tag
, h
);
961 print_otag(h
, TAG_DIV
, 1, &tag
);
964 bufcat_su(h
, "min-width", width
);
966 bufcat_su(h
, "margin-left", width
);
967 if (n
->next
&& n
->next
->child
)
968 bufcat_style(h
, "float", "left");
970 /* XXX: buffer if we run into body. */
971 SCALE_HS_INIT(width
, 1);
972 bufcat_su(h
, "margin-right", width
);
973 PAIR_STYLE_INIT(&tag
, h
);
974 print_otag(h
, TAG_DIV
, 1, &tag
);
980 PAIR_CLASS_INIT(&tag
, "diag");
981 print_otag(h
, TAG_SPAN
, 1, &tag
);
984 ord
= SLIST_FIRST(&h
->ords
);
986 nbuf
[BUFSIZ
- 1] = 0;
987 (void)snprintf(nbuf
, BUFSIZ
- 1, "%d.", ord
->pos
++);
991 print_text(h
, "\\(en");
994 print_text(h
, "\\(hy");
997 print_text(h
, "\\(bu");
1008 mdoc_it_pre(MDOC_ARGS
)
1010 int i
, type
, wp
, comp
;
1011 const struct mdoc_node
*bl
, *nn
;
1012 struct roffsu width
, offs
;
1015 * XXX: be very careful in changing anything, here. Lists in
1016 * mandoc have many peculiarities; furthermore, they don't
1017 * translate well into HTML and require a bit of mangling.
1020 bl
= n
->parent
->parent
;
1021 if (MDOC_BLOCK
!= n
->type
)
1026 /* Set default width and offset. */
1028 SCALE_HS_INIT(&offs
, 0);
1038 SCALE_HS_INIT(&width
, 2);
1041 SCALE_HS_INIT(&width
, INDENT
);
1045 /* Get width, offset, and compact arguments. */
1047 for (wp
= -1, comp
= i
= 0; i
< (int)bl
->args
->argc
; i
++)
1048 switch (bl
->args
->argv
[i
].arg
) {
1050 wp
= i
; /* Save for later. */
1053 a2width(bl
->args
->argv
[i
].value
[0], &width
);
1056 a2offs(bl
->args
->argv
[i
].value
[0], &offs
);
1058 case (MDOC_Compact
):
1065 /* Override width in some cases. */
1073 SCALE_HS_INIT(&width
, 0);
1076 if (0 == width
.scale
)
1077 SCALE_HS_INIT(&width
, INDENT
);
1081 /* Flip to body/block processing. */
1083 if (MDOC_BODY
== n
->type
)
1084 return(mdoc_it_body_pre(m
, n
, h
, type
));
1085 if (MDOC_BLOCK
== n
->type
)
1086 return(mdoc_it_block_pre(m
, n
, h
, type
, comp
,
1089 /* Override column widths. */
1091 if (MDOC_Column
== type
) {
1092 nn
= n
->parent
->child
;
1093 for (i
= 0; nn
&& nn
!= n
; nn
= nn
->next
, i
++)
1095 if (i
< (int)bl
->args
->argv
[wp
].sz
)
1096 a2width(bl
->args
->argv
[wp
].value
[i
], &width
);
1099 return(mdoc_it_head_pre(m
, n
, h
, type
, &width
));
1105 mdoc_bl_pre(MDOC_ARGS
)
1109 if (MDOC_BLOCK
!= n
->type
)
1111 if (MDOC_Enum
!= a2list(n
))
1114 ord
= malloc(sizeof(struct ord
));
1116 err(EXIT_FAILURE
, "malloc");
1119 SLIST_INSERT_HEAD(&h
->ords
, ord
, entry
);
1126 mdoc_bl_post(MDOC_ARGS
)
1130 if (MDOC_BLOCK
!= n
->type
)
1132 if (MDOC_Enum
!= a2list(n
))
1135 ord
= SLIST_FIRST(&h
->ords
);
1137 SLIST_REMOVE_HEAD(&h
->ords
, entry
);
1144 mdoc_ex_pre(MDOC_ARGS
)
1146 const struct mdoc_node
*nn
;
1148 struct htmlpair tag
;
1150 PAIR_CLASS_INIT(&tag
, "utility");
1152 print_text(h
, "The");
1153 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1154 t
= print_otag(h
, TAG_SPAN
, 1, &tag
);
1155 print_text(h
, nn
->string
);
1158 h
->flags
|= HTML_NOSPACE
;
1160 if (nn
->next
&& NULL
== nn
->next
->next
)
1161 print_text(h
, ", and");
1165 h
->flags
&= ~HTML_NOSPACE
;
1169 print_text(h
, "utilities exit");
1171 print_text(h
, "utility exits");
1173 print_text(h
, "0 on success, and >0 if an error occurs.");
1180 mdoc_dq_pre(MDOC_ARGS
)
1183 if (MDOC_BODY
!= n
->type
)
1185 print_text(h
, "\\(lq");
1186 h
->flags
|= HTML_NOSPACE
;
1193 mdoc_dq_post(MDOC_ARGS
)
1196 if (MDOC_BODY
!= n
->type
)
1198 h
->flags
|= HTML_NOSPACE
;
1199 print_text(h
, "\\(rq");
1205 mdoc_pq_pre(MDOC_ARGS
)
1208 if (MDOC_BODY
!= n
->type
)
1210 print_text(h
, "\\&(");
1211 h
->flags
|= HTML_NOSPACE
;
1218 mdoc_pq_post(MDOC_ARGS
)
1221 if (MDOC_BODY
!= n
->type
)
1229 mdoc_sq_pre(MDOC_ARGS
)
1232 if (MDOC_BODY
!= n
->type
)
1234 print_text(h
, "\\(oq");
1235 h
->flags
|= HTML_NOSPACE
;
1242 mdoc_sq_post(MDOC_ARGS
)
1245 if (MDOC_BODY
!= n
->type
)
1247 h
->flags
|= HTML_NOSPACE
;
1248 print_text(h
, "\\(aq");
1254 mdoc_em_pre(MDOC_ARGS
)
1256 struct htmlpair tag
;
1258 PAIR_CLASS_INIT(&tag
, "emph");
1259 print_otag(h
, TAG_SPAN
, 1, &tag
);
1266 mdoc_d1_pre(MDOC_ARGS
)
1268 struct htmlpair tag
[2];
1271 if (MDOC_BLOCK
!= n
->type
)
1274 /* FIXME: D1 shouldn't be literal. */
1276 SCALE_VS_INIT(&su
, INDENT
- 2);
1277 bufcat_su(h
, "margin-left", &su
);
1278 PAIR_CLASS_INIT(&tag
[0], "lit");
1279 PAIR_STYLE_INIT(&tag
[1], h
);
1280 print_otag(h
, TAG_DIV
, 2, tag
);
1287 mdoc_sx_pre(MDOC_ARGS
)
1289 struct htmlpair tag
[2];
1290 const struct mdoc_node
*nn
;
1293 /* FIXME: duplicates? */
1295 (void)strlcpy(buf
, "#", BUFSIZ
);
1296 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1297 (void)strlcat(buf
, nn
->string
, BUFSIZ
);
1299 (void)strlcat(buf
, "_", BUFSIZ
);
1302 PAIR_CLASS_INIT(&tag
[0], "link-sec");
1303 tag
[1].key
= ATTR_HREF
;
1306 print_otag(h
, TAG_A
, 2, tag
);
1313 mdoc_aq_pre(MDOC_ARGS
)
1316 if (MDOC_BODY
!= n
->type
)
1318 print_text(h
, "\\(la");
1319 h
->flags
|= HTML_NOSPACE
;
1326 mdoc_aq_post(MDOC_ARGS
)
1329 if (MDOC_BODY
!= n
->type
)
1331 h
->flags
|= HTML_NOSPACE
;
1332 print_text(h
, "\\(ra");
1338 mdoc_bd_pre(MDOC_ARGS
)
1340 struct htmlpair tag
[2];
1342 const struct mdoc_node
*bl
, *nn
;
1345 if (MDOC_BLOCK
== n
->type
)
1347 else if (MDOC_HEAD
== n
->type
)
1352 SCALE_VS_INIT(&su
, 0);
1355 for (i
= 0; i
< (int)bl
->args
->argc
; i
++)
1356 switch (bl
->args
->argv
[i
].arg
) {
1358 a2offs(bl
->args
->argv
[i
].value
[0], &su
);
1360 case (MDOC_Compact
):
1363 case (MDOC_Centred
):
1369 case (MDOC_Unfilled
):
1371 case (MDOC_Literal
):
1372 type
= bl
->args
->argv
[i
].arg
;
1378 /* FIXME: -centered, etc. formatting. */
1380 if (MDOC_BLOCK
== n
->type
) {
1381 bufcat_su(h
, "margin-left", &su
);
1382 for (nn
= n
; nn
&& ! comp
; nn
= nn
->parent
) {
1383 if (MDOC_BLOCK
!= nn
->type
)
1385 if (MDOC_Ss
== nn
->tok
|| MDOC_Sh
== nn
->tok
)
1391 print_otag(h
, TAG_DIV
, 0, tag
);
1394 SCALE_VS_INIT(&su
, 1);
1395 bufcat_su(h
, "margin-top", &su
);
1396 PAIR_STYLE_INIT(&tag
[0], h
);
1397 print_otag(h
, TAG_DIV
, 1, tag
);
1401 if (MDOC_Unfilled
!= type
&& MDOC_Literal
!= type
)
1404 PAIR_CLASS_INIT(&tag
[0], "lit");
1405 bufcat_style(h
, "white-space", "pre");
1406 PAIR_STYLE_INIT(&tag
[1], h
);
1407 print_otag(h
, TAG_DIV
, 2, tag
);
1409 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1410 h
->flags
|= HTML_NOSPACE
;
1411 print_mdoc_node(m
, nn
, h
);
1412 if (NULL
== nn
->next
)
1414 if (nn
->prev
&& nn
->prev
->line
< nn
->line
)
1415 print_text(h
, "\n");
1416 else if (NULL
== nn
->prev
)
1417 print_text(h
, "\n");
1426 mdoc_pa_pre(MDOC_ARGS
)
1428 struct htmlpair tag
;
1430 PAIR_CLASS_INIT(&tag
, "file");
1431 print_otag(h
, TAG_SPAN
, 1, &tag
);
1438 mdoc_ad_pre(MDOC_ARGS
)
1440 struct htmlpair tag
;
1442 PAIR_CLASS_INIT(&tag
, "addr");
1443 print_otag(h
, TAG_SPAN
, 1, &tag
);
1450 mdoc_an_pre(MDOC_ARGS
)
1452 struct htmlpair tag
;
1454 /* TODO: -split and -nosplit (see termp_an_pre()). */
1456 PAIR_CLASS_INIT(&tag
, "author");
1457 print_otag(h
, TAG_SPAN
, 1, &tag
);
1464 mdoc_cd_pre(MDOC_ARGS
)
1466 struct htmlpair tag
;
1468 print_otag(h
, TAG_DIV
, 0, NULL
);
1469 PAIR_CLASS_INIT(&tag
, "config");
1470 print_otag(h
, TAG_SPAN
, 1, &tag
);
1477 mdoc_dv_pre(MDOC_ARGS
)
1479 struct htmlpair tag
;
1481 PAIR_CLASS_INIT(&tag
, "define");
1482 print_otag(h
, TAG_SPAN
, 1, &tag
);
1489 mdoc_ev_pre(MDOC_ARGS
)
1491 struct htmlpair tag
;
1493 PAIR_CLASS_INIT(&tag
, "env");
1494 print_otag(h
, TAG_SPAN
, 1, &tag
);
1501 mdoc_er_pre(MDOC_ARGS
)
1503 struct htmlpair tag
;
1505 PAIR_CLASS_INIT(&tag
, "errno");
1506 print_otag(h
, TAG_SPAN
, 1, &tag
);
1513 mdoc_fa_pre(MDOC_ARGS
)
1515 const struct mdoc_node
*nn
;
1516 struct htmlpair tag
;
1519 PAIR_CLASS_INIT(&tag
, "farg");
1520 if (n
->parent
->tok
!= MDOC_Fo
) {
1521 print_otag(h
, TAG_SPAN
, 1, &tag
);
1525 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1526 t
= print_otag(h
, TAG_SPAN
, 1, &tag
);
1527 print_text(h
, nn
->string
);
1533 if (n
->child
&& n
->next
&& n
->next
->tok
== MDOC_Fa
)
1542 mdoc_fd_pre(MDOC_ARGS
)
1544 struct htmlpair tag
;
1547 if (SEC_SYNOPSIS
== n
->sec
) {
1548 if (n
->next
&& MDOC_Fd
!= n
->next
->tok
) {
1549 SCALE_VS_INIT(&su
, 1);
1550 bufcat_su(h
, "margin-bottom", &su
);
1551 PAIR_STYLE_INIT(&tag
, h
);
1552 print_otag(h
, TAG_DIV
, 1, &tag
);
1554 print_otag(h
, TAG_DIV
, 0, NULL
);
1557 PAIR_CLASS_INIT(&tag
, "macro");
1558 print_otag(h
, TAG_SPAN
, 1, &tag
);
1565 mdoc_vt_pre(MDOC_ARGS
)
1567 struct htmlpair tag
;
1570 if (SEC_SYNOPSIS
== n
->sec
) {
1571 if (n
->next
&& MDOC_Vt
!= n
->next
->tok
) {
1572 SCALE_VS_INIT(&su
, 1);
1573 bufcat_su(h
, "margin-bottom", &su
);
1574 PAIR_STYLE_INIT(&tag
, h
);
1575 print_otag(h
, TAG_DIV
, 1, &tag
);
1577 print_otag(h
, TAG_DIV
, 0, NULL
);
1580 PAIR_CLASS_INIT(&tag
, "type");
1581 print_otag(h
, TAG_SPAN
, 1, &tag
);
1588 mdoc_ft_pre(MDOC_ARGS
)
1590 struct htmlpair tag
;
1593 if (SEC_SYNOPSIS
== n
->sec
) {
1594 if (n
->prev
&& MDOC_Fo
== n
->prev
->tok
) {
1595 SCALE_VS_INIT(&su
, 1);
1596 bufcat_su(h
, "margin-top", &su
);
1597 PAIR_STYLE_INIT(&tag
, h
);
1598 print_otag(h
, TAG_DIV
, 1, &tag
);
1600 print_otag(h
, TAG_DIV
, 0, NULL
);
1603 PAIR_CLASS_INIT(&tag
, "ftype");
1604 print_otag(h
, TAG_SPAN
, 1, &tag
);
1611 mdoc_fn_pre(MDOC_ARGS
)
1614 struct htmlpair tag
[2];
1615 const struct mdoc_node
*nn
;
1617 const char *sp
, *ep
;
1621 if (SEC_SYNOPSIS
== n
->sec
) {
1622 SCALE_HS_INIT(&su
, INDENT
);
1623 bufcat_su(h
, "margin-left", &su
);
1624 su
.scale
= -su
.scale
;
1625 bufcat_su(h
, "text-indent", &su
);
1627 SCALE_VS_INIT(&su
, 1);
1628 bufcat_su(h
, "margin-bottom", &su
);
1630 PAIR_STYLE_INIT(&tag
[0], h
);
1631 print_otag(h
, TAG_DIV
, 1, tag
);
1634 /* Split apart into type and name. */
1635 assert(n
->child
->string
);
1636 sp
= n
->child
->string
;
1638 ep
= strchr(sp
, ' ');
1640 PAIR_CLASS_INIT(&tag
[0], "ftype");
1641 t
= print_otag(h
, TAG_SPAN
, 1, tag
);
1644 sz
= MIN((int)(ep
- sp
), BUFSIZ
- 1);
1645 (void)memcpy(nbuf
, sp
, (size_t)sz
);
1647 print_text(h
, nbuf
);
1649 ep
= strchr(sp
, ' ');
1654 PAIR_CLASS_INIT(&tag
[0], "fname");
1655 t
= print_otag(h
, TAG_SPAN
, 1, tag
);
1658 (void)strlcpy(nbuf
, sp
, BUFSIZ
);
1659 print_text(h
, nbuf
);
1664 h
->flags
|= HTML_NOSPACE
;
1668 PAIR_CLASS_INIT(&tag
[0], "farg");
1669 bufcat_style(h
, "white-space", "nowrap");
1670 PAIR_STYLE_INIT(&tag
[1], h
);
1672 for (nn
= n
->child
->next
; nn
; nn
= nn
->next
) {
1674 if (SEC_SYNOPSIS
== n
->sec
)
1676 t
= print_otag(h
, TAG_SPAN
, i
, tag
);
1677 print_text(h
, nn
->string
);
1684 if (SEC_SYNOPSIS
== n
->sec
)
1693 mdoc_sp_pre(MDOC_ARGS
)
1696 struct htmlpair tag
;
1701 /* FIXME: can this have a scaling indicator? */
1702 len
= n
->child
? atoi(n
->child
->string
) : 1;
1712 SCALE_VS_INIT(&su
, len
);
1713 bufcat_su(h
, "height", &su
);
1714 PAIR_STYLE_INIT(&tag
, h
);
1715 print_otag(h
, TAG_DIV
, 1, &tag
);
1723 mdoc_brq_pre(MDOC_ARGS
)
1726 if (MDOC_BODY
!= n
->type
)
1728 print_text(h
, "\\(lC");
1729 h
->flags
|= HTML_NOSPACE
;
1736 mdoc_brq_post(MDOC_ARGS
)
1739 if (MDOC_BODY
!= n
->type
)
1741 h
->flags
|= HTML_NOSPACE
;
1742 print_text(h
, "\\(rC");
1748 mdoc_lk_pre(MDOC_ARGS
)
1750 const struct mdoc_node
*nn
;
1751 struct htmlpair tag
[2];
1755 PAIR_CLASS_INIT(&tag
[0], "link-ext");
1756 tag
[1].key
= ATTR_HREF
;
1757 tag
[1].val
= nn
->string
;
1758 print_otag(h
, TAG_A
, 2, tag
);
1760 for (nn
= nn
->next
; nn
; nn
= nn
->next
)
1761 print_text(h
, nn
->string
);
1769 mdoc_mt_pre(MDOC_ARGS
)
1771 struct htmlpair tag
[2];
1773 const struct mdoc_node
*nn
;
1775 PAIR_CLASS_INIT(&tag
[0], "link-mail");
1777 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1779 bufcat(h
, "mailto:");
1780 bufcat(h
, nn
->string
);
1781 PAIR_STYLE_INIT(&tag
[1], h
);
1782 t
= print_otag(h
, TAG_A
, 2, tag
);
1783 print_text(h
, nn
->string
);
1793 mdoc_fo_pre(MDOC_ARGS
)
1795 struct htmlpair tag
;
1797 if (MDOC_BODY
== n
->type
) {
1798 h
->flags
|= HTML_NOSPACE
;
1800 h
->flags
|= HTML_NOSPACE
;
1802 } else if (MDOC_BLOCK
== n
->type
)
1805 PAIR_CLASS_INIT(&tag
, "fname");
1806 print_otag(h
, TAG_SPAN
, 1, &tag
);
1813 mdoc_fo_post(MDOC_ARGS
)
1815 if (MDOC_BODY
!= n
->type
)
1817 h
->flags
|= HTML_NOSPACE
;
1819 h
->flags
|= HTML_NOSPACE
;
1826 mdoc_in_pre(MDOC_ARGS
)
1828 const struct mdoc_node
*nn
;
1830 struct htmlpair tag
[2];
1834 if (SEC_SYNOPSIS
== n
->sec
) {
1835 if (n
->next
&& MDOC_In
!= n
->next
->tok
) {
1836 SCALE_VS_INIT(&su
, 1);
1837 bufcat_su(h
, "margin-bottom", &su
);
1838 PAIR_STYLE_INIT(&tag
[0], h
);
1839 print_otag(h
, TAG_DIV
, 1, tag
);
1841 print_otag(h
, TAG_DIV
, 0, NULL
);
1844 /* FIXME: there's a buffer bug in here somewhere. */
1846 PAIR_CLASS_INIT(&tag
[0], "includes");
1847 print_otag(h
, TAG_SPAN
, 1, tag
);
1849 if (SEC_SYNOPSIS
== n
->sec
)
1850 print_text(h
, "#include");
1853 h
->flags
|= HTML_NOSPACE
;
1855 /* XXX -- see warning in termp_in_post(). */
1857 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1858 PAIR_CLASS_INIT(&tag
[0], "link-includes");
1860 if (h
->base_includes
) {
1861 buffmt_includes(h
, nn
->string
);
1862 tag
[i
].key
= ATTR_HREF
;
1863 tag
[i
++].val
= h
->buf
;
1865 t
= print_otag(h
, TAG_A
, i
, tag
);
1866 print_mdoc_node(m
, nn
, h
);
1870 h
->flags
|= HTML_NOSPACE
;
1879 mdoc_ic_pre(MDOC_ARGS
)
1881 struct htmlpair tag
;
1883 PAIR_CLASS_INIT(&tag
, "cmd");
1884 print_otag(h
, TAG_SPAN
, 1, &tag
);
1891 mdoc_rv_pre(MDOC_ARGS
)
1893 const struct mdoc_node
*nn
;
1894 struct htmlpair tag
;
1897 print_otag(h
, TAG_DIV
, 0, NULL
);
1898 print_text(h
, "The");
1900 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1901 PAIR_CLASS_INIT(&tag
, "fname");
1902 t
= print_otag(h
, TAG_SPAN
, 1, &tag
);
1903 print_text(h
, nn
->string
);
1906 h
->flags
|= HTML_NOSPACE
;
1907 if (nn
->next
&& NULL
== nn
->next
->next
)
1908 print_text(h
, "(), and");
1910 print_text(h
, "(),");
1912 print_text(h
, "()");
1916 print_text(h
, "functions return");
1918 print_text(h
, "function returns");
1920 print_text(h
, "the value 0 if successful; otherwise the value "
1921 "-1 is returned and the global variable");
1923 PAIR_CLASS_INIT(&tag
, "var");
1924 t
= print_otag(h
, TAG_SPAN
, 1, &tag
);
1925 print_text(h
, "errno");
1927 print_text(h
, "is set to indicate the error.");
1934 mdoc_va_pre(MDOC_ARGS
)
1936 struct htmlpair tag
;
1938 PAIR_CLASS_INIT(&tag
, "var");
1939 print_otag(h
, TAG_SPAN
, 1, &tag
);
1946 mdoc_bq_pre(MDOC_ARGS
)
1949 if (MDOC_BODY
!= n
->type
)
1951 print_text(h
, "\\(lB");
1952 h
->flags
|= HTML_NOSPACE
;
1959 mdoc_bq_post(MDOC_ARGS
)
1962 if (MDOC_BODY
!= n
->type
)
1964 h
->flags
|= HTML_NOSPACE
;
1965 print_text(h
, "\\(rB");
1971 mdoc_ap_pre(MDOC_ARGS
)
1974 h
->flags
|= HTML_NOSPACE
;
1975 print_text(h
, "\\(aq");
1976 h
->flags
|= HTML_NOSPACE
;
1983 mdoc_bf_pre(MDOC_ARGS
)
1986 struct htmlpair tag
[2];
1989 if (MDOC_HEAD
== n
->type
)
1991 else if (MDOC_BLOCK
!= n
->type
)
1994 PAIR_CLASS_INIT(&tag
[0], "lit");
1996 if (n
->head
->child
) {
1997 if ( ! strcmp("Em", n
->head
->child
->string
))
1998 PAIR_CLASS_INIT(&tag
[0], "emph");
1999 else if ( ! strcmp("Sy", n
->head
->child
->string
))
2000 PAIR_CLASS_INIT(&tag
[0], "symb");
2001 else if ( ! strcmp("Li", n
->head
->child
->string
))
2002 PAIR_CLASS_INIT(&tag
[0], "lit");
2005 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
2006 switch (n
->args
->argv
[i
].arg
) {
2007 case (MDOC_Symbolic
):
2008 PAIR_CLASS_INIT(&tag
[0], "symb");
2010 case (MDOC_Literal
):
2011 PAIR_CLASS_INIT(&tag
[0], "lit");
2013 case (MDOC_Emphasis
):
2014 PAIR_CLASS_INIT(&tag
[0], "emph");
2021 /* FIXME: div's have spaces stripped--we want them. */
2023 bufcat_style(h
, "display", "inline");
2024 SCALE_HS_INIT(&su
, 1);
2025 bufcat_su(h
, "margin-right", &su
);
2026 PAIR_STYLE_INIT(&tag
[1], h
);
2027 print_otag(h
, TAG_DIV
, 2, tag
);
2034 mdoc_ms_pre(MDOC_ARGS
)
2036 struct htmlpair tag
;
2038 PAIR_CLASS_INIT(&tag
, "symb");
2039 print_otag(h
, TAG_SPAN
, 1, &tag
);
2046 mdoc_pf_pre(MDOC_ARGS
)
2049 h
->flags
|= HTML_IGNDELIM
;
2056 mdoc_pf_post(MDOC_ARGS
)
2059 h
->flags
&= ~HTML_IGNDELIM
;
2060 h
->flags
|= HTML_NOSPACE
;
2066 mdoc_rs_pre(MDOC_ARGS
)
2068 struct htmlpair tag
;
2071 if (MDOC_BLOCK
!= n
->type
)
2074 if (n
->prev
&& SEC_SEE_ALSO
== n
->sec
) {
2075 SCALE_VS_INIT(&su
, 1);
2076 bufcat_su(h
, "margin-top", &su
);
2077 PAIR_STYLE_INIT(&tag
, h
);
2078 print_otag(h
, TAG_DIV
, 1, &tag
);
2081 PAIR_CLASS_INIT(&tag
, "ref");
2082 print_otag(h
, TAG_SPAN
, 1, &tag
);
2090 mdoc_li_pre(MDOC_ARGS
)
2092 struct htmlpair tag
;
2094 PAIR_CLASS_INIT(&tag
, "lit");
2095 print_otag(h
, TAG_SPAN
, 1, &tag
);
2102 mdoc_sy_pre(MDOC_ARGS
)
2104 struct htmlpair tag
;
2106 PAIR_CLASS_INIT(&tag
, "symb");
2107 print_otag(h
, TAG_SPAN
, 1, &tag
);
2114 mdoc_bt_pre(MDOC_ARGS
)
2117 print_text(h
, "is currently in beta test.");
2124 mdoc_ud_pre(MDOC_ARGS
)
2127 print_text(h
, "currently under development.");
2134 mdoc_lb_pre(MDOC_ARGS
)
2136 struct htmlpair tag
;
2138 if (SEC_SYNOPSIS
== n
->sec
)
2139 print_otag(h
, TAG_DIV
, 0, NULL
);
2140 PAIR_CLASS_INIT(&tag
, "lib");
2141 print_otag(h
, TAG_SPAN
, 1, &tag
);
2148 mdoc__x_pre(MDOC_ARGS
)
2150 struct htmlpair tag
;
2156 PAIR_CLASS_INIT(&tag
, "ref-auth");
2159 PAIR_CLASS_INIT(&tag
, "ref-book");
2162 PAIR_CLASS_INIT(&tag
, "ref-city");
2165 PAIR_CLASS_INIT(&tag
, "ref-date");
2168 PAIR_CLASS_INIT(&tag
, "ref-issue");
2171 PAIR_CLASS_INIT(&tag
, "ref-jrnl");
2174 PAIR_CLASS_INIT(&tag
, "ref-num");
2177 PAIR_CLASS_INIT(&tag
, "ref-opt");
2180 PAIR_CLASS_INIT(&tag
, "ref-page");
2183 PAIR_CLASS_INIT(&tag
, "ref-corp");
2186 PAIR_CLASS_INIT(&tag
, "ref-rep");
2189 PAIR_CLASS_INIT(&tag
, "ref-title");
2190 print_text(h
, "\\(lq");
2191 h
->flags
|= HTML_NOSPACE
;
2194 PAIR_CLASS_INIT(&tag
, "ref-vol");
2201 print_otag(h
, TAG_SPAN
, 1, &tag
);
2208 mdoc__x_post(MDOC_ARGS
)
2211 h
->flags
|= HTML_NOSPACE
;
2214 print_text(h
, "\\(rq");
2215 h
->flags
|= HTML_NOSPACE
;
2220 print_text(h
, n
->next
? "," : ".");