]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_html.c
1 /* $Id: mdoc_html.c,v 1.57 2010/04/05 08:51:56 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.
21 #include <sys/types.h>
38 #define MDOC_ARGS const struct mdoc_meta *m, \
39 const struct mdoc_node *n, \
43 #define MIN(a,b) ((/*CONSTCOND*/(a)<(b))?(a):(b))
47 int (*pre
)(MDOC_ARGS
);
48 void (*post
)(MDOC_ARGS
);
51 static void print_mdoc(MDOC_ARGS
);
52 static void print_mdoc_head(MDOC_ARGS
);
53 static void print_mdoc_node(MDOC_ARGS
);
54 static void print_mdoc_nodelist(MDOC_ARGS
);
56 static void a2width(const char *, struct roffsu
*);
57 static void a2offs(const char *, struct roffsu
*);
59 static int a2list(const struct mdoc_node
*);
61 static void mdoc_root_post(MDOC_ARGS
);
62 static int mdoc_root_pre(MDOC_ARGS
);
64 static void mdoc__x_post(MDOC_ARGS
);
65 static int mdoc__x_pre(MDOC_ARGS
);
66 static int mdoc_ad_pre(MDOC_ARGS
);
67 static int mdoc_an_pre(MDOC_ARGS
);
68 static int mdoc_ap_pre(MDOC_ARGS
);
69 static void mdoc_aq_post(MDOC_ARGS
);
70 static int mdoc_aq_pre(MDOC_ARGS
);
71 static int mdoc_ar_pre(MDOC_ARGS
);
72 static int mdoc_bd_pre(MDOC_ARGS
);
73 static int mdoc_bf_pre(MDOC_ARGS
);
74 static void mdoc_bl_post(MDOC_ARGS
);
75 static int mdoc_bl_pre(MDOC_ARGS
);
76 static void mdoc_bq_post(MDOC_ARGS
);
77 static int mdoc_bq_pre(MDOC_ARGS
);
78 static void mdoc_brq_post(MDOC_ARGS
);
79 static int mdoc_brq_pre(MDOC_ARGS
);
80 static int mdoc_bt_pre(MDOC_ARGS
);
81 static int mdoc_bx_pre(MDOC_ARGS
);
82 static int mdoc_cd_pre(MDOC_ARGS
);
83 static int mdoc_d1_pre(MDOC_ARGS
);
84 static void mdoc_dq_post(MDOC_ARGS
);
85 static int mdoc_dq_pre(MDOC_ARGS
);
86 static int mdoc_dv_pre(MDOC_ARGS
);
87 static int mdoc_fa_pre(MDOC_ARGS
);
88 static int mdoc_fd_pre(MDOC_ARGS
);
89 static int mdoc_fl_pre(MDOC_ARGS
);
90 static int mdoc_fn_pre(MDOC_ARGS
);
91 static int mdoc_ft_pre(MDOC_ARGS
);
92 static int mdoc_em_pre(MDOC_ARGS
);
93 static int mdoc_er_pre(MDOC_ARGS
);
94 static int mdoc_ev_pre(MDOC_ARGS
);
95 static int mdoc_ex_pre(MDOC_ARGS
);
96 static void mdoc_fo_post(MDOC_ARGS
);
97 static int mdoc_fo_pre(MDOC_ARGS
);
98 static int mdoc_ic_pre(MDOC_ARGS
);
99 static int mdoc_in_pre(MDOC_ARGS
);
100 static int mdoc_it_block_pre(MDOC_ARGS
, int, int,
101 struct roffsu
*, struct roffsu
*);
102 static int mdoc_it_head_pre(MDOC_ARGS
, int,
104 static int mdoc_it_body_pre(MDOC_ARGS
, int);
105 static int mdoc_it_pre(MDOC_ARGS
);
106 static int mdoc_lb_pre(MDOC_ARGS
);
107 static int mdoc_li_pre(MDOC_ARGS
);
108 static int mdoc_lk_pre(MDOC_ARGS
);
109 static int mdoc_mt_pre(MDOC_ARGS
);
110 static int mdoc_ms_pre(MDOC_ARGS
);
111 static int mdoc_nd_pre(MDOC_ARGS
);
112 static int mdoc_nm_pre(MDOC_ARGS
);
113 static int mdoc_ns_pre(MDOC_ARGS
);
114 static void mdoc_op_post(MDOC_ARGS
);
115 static int mdoc_op_pre(MDOC_ARGS
);
116 static int mdoc_pa_pre(MDOC_ARGS
);
117 static void mdoc_pf_post(MDOC_ARGS
);
118 static int mdoc_pf_pre(MDOC_ARGS
);
119 static void mdoc_pq_post(MDOC_ARGS
);
120 static int mdoc_pq_pre(MDOC_ARGS
);
121 static int mdoc_rs_pre(MDOC_ARGS
);
122 static int mdoc_rv_pre(MDOC_ARGS
);
123 static int mdoc_sh_pre(MDOC_ARGS
);
124 static int mdoc_sp_pre(MDOC_ARGS
);
125 static void mdoc_sq_post(MDOC_ARGS
);
126 static int mdoc_sq_pre(MDOC_ARGS
);
127 static int mdoc_ss_pre(MDOC_ARGS
);
128 static int mdoc_sx_pre(MDOC_ARGS
);
129 static int mdoc_sy_pre(MDOC_ARGS
);
130 static int mdoc_ud_pre(MDOC_ARGS
);
131 static int mdoc_va_pre(MDOC_ARGS
);
132 static int mdoc_vt_pre(MDOC_ARGS
);
133 static int mdoc_xr_pre(MDOC_ARGS
);
134 static int mdoc_xx_pre(MDOC_ARGS
);
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 */ /* FIXME: no space */
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
;
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
)
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
);
447 if (mdocs
[n
->tok
].post
)
448 (*mdocs
[n
->tok
].post
)(m
, n
, h
);
456 mdoc_root_post(MDOC_ARGS
)
458 struct htmlpair tag
[3];
462 time2a(m
->date
, b
, DATESIZ
);
465 * XXX: this should use divs, but in Firefox, divs with nested
466 * divs for some reason puke when trying to put a border line
467 * below. So I use tables, instead.
470 PAIR_CLASS_INIT(&tag
[0], "footer");
471 bufcat_style(h
, "width", "100%");
472 PAIR_STYLE_INIT(&tag
[1], h
);
473 PAIR_SUMMARY_INIT(&tag
[2], "footer");
475 t
= print_otag(h
, TAG_TABLE
, 3, 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
[3];
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 PAIR_SUMMARY_INIT(&tag
[2], "header");
521 t
= print_otag(h
, TAG_TABLE
, 3, tag
);
523 tt
= print_otag(h
, TAG_TR
, 0, NULL
);
526 bufcat_style(h
, "width", "10%");
527 PAIR_STYLE_INIT(&tag
[0], h
);
528 print_otag(h
, TAG_TD
, 1, tag
);
529 print_text(h
, title
);
533 bufcat_style(h
, "text-align", "center");
534 bufcat_style(h
, "white-space", "nowrap");
535 bufcat_style(h
, "width", "80%");
536 PAIR_STYLE_INIT(&tag
[0], h
);
537 print_otag(h
, TAG_TD
, 1, tag
);
542 bufcat_style(h
, "text-align", "right");
543 bufcat_style(h
, "width", "10%");
544 PAIR_STYLE_INIT(&tag
[0], h
);
545 print_otag(h
, TAG_TD
, 1, tag
);
546 print_text(h
, title
);
554 mdoc_sh_pre(MDOC_ARGS
)
556 struct htmlpair tag
[2];
557 const struct mdoc_node
*nn
;
561 if (MDOC_BODY
== n
->type
) {
562 SCALE_HS_INIT(&su
, INDENT
);
563 bufcat_su(h
, "margin-left", &su
);
564 PAIR_CLASS_INIT(&tag
[0], "sec-body");
565 PAIR_STYLE_INIT(&tag
[1], h
);
566 print_otag(h
, TAG_DIV
, 2, tag
);
568 } else if (MDOC_BLOCK
== n
->type
) {
569 PAIR_CLASS_INIT(&tag
[0], "sec-block");
570 if (n
->prev
&& NULL
== n
->prev
->body
->child
) {
571 print_otag(h
, TAG_DIV
, 1, tag
);
575 SCALE_VS_INIT(&su
, 1);
576 bufcat_su(h
, "margin-top", &su
);
578 bufcat_su(h
, "margin-bottom", &su
);
580 PAIR_STYLE_INIT(&tag
[1], h
);
581 print_otag(h
, TAG_DIV
, 2, tag
);
586 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
587 html_idcat(buf
, nn
->string
, BUFSIZ
);
589 html_idcat(buf
, " ", BUFSIZ
);
592 PAIR_CLASS_INIT(&tag
[0], "sec-head");
593 PAIR_ID_INIT(&tag
[1], buf
);
595 print_otag(h
, TAG_DIV
, 2, tag
);
602 mdoc_ss_pre(MDOC_ARGS
)
604 struct htmlpair tag
[3];
605 const struct mdoc_node
*nn
;
609 SCALE_VS_INIT(&su
, 1);
611 if (MDOC_BODY
== n
->type
) {
612 PAIR_CLASS_INIT(&tag
[0], "ssec-body");
613 if (n
->parent
->next
&& n
->child
) {
614 bufcat_su(h
, "margin-bottom", &su
);
615 PAIR_STYLE_INIT(&tag
[1], h
);
616 print_otag(h
, TAG_DIV
, 2, tag
);
618 print_otag(h
, TAG_DIV
, 1, tag
);
620 } else if (MDOC_BLOCK
== n
->type
) {
621 PAIR_CLASS_INIT(&tag
[0], "ssec-block");
623 bufcat_su(h
, "margin-top", &su
);
624 PAIR_STYLE_INIT(&tag
[1], h
);
625 print_otag(h
, TAG_DIV
, 2, tag
);
627 print_otag(h
, TAG_DIV
, 1, tag
);
631 /* TODO: see note in mdoc_sh_pre() about duplicates. */
634 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
635 html_idcat(buf
, nn
->string
, BUFSIZ
);
637 html_idcat(buf
, " ", BUFSIZ
);
640 SCALE_HS_INIT(&su
, INDENT
- HALFINDENT
);
641 su
.scale
= -su
.scale
;
642 bufcat_su(h
, "margin-left", &su
);
644 PAIR_CLASS_INIT(&tag
[0], "ssec-head");
645 PAIR_STYLE_INIT(&tag
[1], h
);
646 PAIR_ID_INIT(&tag
[2], buf
);
648 print_otag(h
, TAG_DIV
, 3, tag
);
655 mdoc_fl_pre(MDOC_ARGS
)
659 PAIR_CLASS_INIT(&tag
, "flag");
660 print_otag(h
, TAG_SPAN
, 1, &tag
);
662 /* `Cm' has no leading hyphen. */
664 if (MDOC_Cm
== n
->tok
)
667 print_text(h
, "\\-");
669 /* A blank `Fl' should incur a subsequent space. */
672 h
->flags
|= HTML_NOSPACE
;
680 mdoc_nd_pre(MDOC_ARGS
)
684 if (MDOC_BODY
!= n
->type
)
687 /* XXX: this tag in theory can contain block elements. */
689 print_text(h
, "\\(em");
690 PAIR_CLASS_INIT(&tag
, "desc-body");
691 print_otag(h
, TAG_SPAN
, 1, &tag
);
698 mdoc_op_pre(MDOC_ARGS
)
702 if (MDOC_BODY
!= n
->type
)
705 /* XXX: this tag in theory can contain block elements. */
707 print_text(h
, "\\(lB");
708 h
->flags
|= HTML_NOSPACE
;
709 PAIR_CLASS_INIT(&tag
, "opt");
710 print_otag(h
, TAG_SPAN
, 1, &tag
);
717 mdoc_op_post(MDOC_ARGS
)
720 if (MDOC_BODY
!= n
->type
)
722 h
->flags
|= HTML_NOSPACE
;
723 print_text(h
, "\\(rB");
728 mdoc_nm_pre(MDOC_ARGS
)
732 if (SEC_SYNOPSIS
== n
->sec
&& n
->prev
) {
733 bufcat_style(h
, "clear", "both");
734 PAIR_STYLE_INIT(&tag
, h
);
735 print_otag(h
, TAG_BR
, 1, &tag
);
738 PAIR_CLASS_INIT(&tag
, "name");
739 print_otag(h
, TAG_SPAN
, 1, &tag
);
740 if (NULL
== n
->child
)
741 print_text(h
, m
->name
);
749 mdoc_xr_pre(MDOC_ARGS
)
751 struct htmlpair tag
[2];
752 const struct mdoc_node
*nn
;
754 if (NULL
== n
->child
)
757 PAIR_CLASS_INIT(&tag
[0], "link-man");
760 buffmt_man(h
, n
->child
->string
,
762 n
->child
->next
->string
: NULL
);
763 PAIR_HREF_INIT(&tag
[1], h
->buf
);
764 print_otag(h
, TAG_A
, 2, tag
);
766 print_otag(h
, TAG_A
, 1, tag
);
769 print_text(h
, nn
->string
);
771 if (NULL
== (nn
= nn
->next
))
774 h
->flags
|= HTML_NOSPACE
;
776 h
->flags
|= HTML_NOSPACE
;
777 print_text(h
, nn
->string
);
778 h
->flags
|= HTML_NOSPACE
;
786 mdoc_ns_pre(MDOC_ARGS
)
789 h
->flags
|= HTML_NOSPACE
;
796 mdoc_ar_pre(MDOC_ARGS
)
800 PAIR_CLASS_INIT(&tag
, "arg");
801 print_otag(h
, TAG_SPAN
, 1, &tag
);
808 mdoc_xx_pre(MDOC_ARGS
)
836 PAIR_CLASS_INIT(&tag
, "unix");
837 print_otag(h
, TAG_SPAN
, 1, &tag
);
845 mdoc_bx_pre(MDOC_ARGS
)
847 const struct mdoc_node
*nn
;
850 PAIR_CLASS_INIT(&tag
, "unix");
851 print_otag(h
, TAG_SPAN
, 1, &tag
);
853 for (nn
= n
->child
; nn
; nn
= nn
->next
)
854 print_mdoc_node(m
, nn
, h
);
857 h
->flags
|= HTML_NOSPACE
;
859 print_text(h
, "BSD");
866 mdoc_it_block_pre(MDOC_ARGS
, int type
, int comp
,
867 struct roffsu
*offs
, struct roffsu
*width
)
870 const struct mdoc_node
*nn
;
873 nn
= n
->parent
->parent
;
876 /* XXX: see notes in mdoc_it_pre(). */
878 if (MDOC_Column
== type
) {
879 /* Don't width-pad on the left. */
880 SCALE_HS_INIT(width
, 0);
881 /* Also disallow non-compact. */
884 if (MDOC_Diag
== type
)
885 /* Mandate non-compact with empty prior. */
886 if (n
->prev
&& NULL
== n
->prev
->body
->child
)
889 bufcat_style(h
, "clear", "both");
891 bufcat_su(h
, "margin-left", offs
);
892 if (width
->scale
> 0)
893 bufcat_su(h
, "padding-left", width
);
895 PAIR_STYLE_INIT(&tag
, h
);
897 /* Mandate compact following `Ss' and `Sh' starts. */
899 for (nn
= n
; nn
&& ! comp
; nn
= nn
->parent
) {
900 if (MDOC_BLOCK
!= nn
->type
)
902 if (MDOC_Ss
== nn
->tok
|| MDOC_Sh
== nn
->tok
)
909 SCALE_VS_INIT(&su
, 1);
910 bufcat_su(h
, "padding-top", &su
);
913 PAIR_STYLE_INIT(&tag
, h
);
914 print_otag(h
, TAG_DIV
, 1, &tag
);
921 mdoc_it_body_pre(MDOC_ARGS
, int type
)
935 * XXX: this tricks CSS into aligning the bodies with
936 * the right-padding in the head.
938 SCALE_HS_INIT(&su
, 2);
939 bufcat_su(h
, "margin-left", &su
);
940 PAIR_STYLE_INIT(&tag
, h
);
941 print_otag(h
, TAG_DIV
, 1, &tag
);
951 mdoc_it_head_pre(MDOC_ARGS
, int type
, struct roffsu
*width
)
961 print_otag(h
, TAG_DIV
, 0, &tag
);
964 bufcat_su(h
, "min-width", width
);
965 bufcat_style(h
, "clear", "none");
966 if (n
->next
&& MDOC_HEAD
== n
->next
->type
)
967 bufcat_style(h
, "float", "left");
968 PAIR_STYLE_INIT(&tag
, h
);
969 print_otag(h
, TAG_DIV
, 1, &tag
);
972 bufcat_su(h
, "min-width", width
);
974 bufcat_su(h
, "margin-left", width
);
975 if (n
->next
&& n
->next
->child
)
976 bufcat_style(h
, "float", "left");
978 /* XXX: buffer if we run into body. */
979 SCALE_HS_INIT(width
, 1);
980 bufcat_su(h
, "margin-right", width
);
981 PAIR_STYLE_INIT(&tag
, h
);
982 print_otag(h
, TAG_DIV
, 1, &tag
);
988 PAIR_CLASS_INIT(&tag
, "diag");
989 print_otag(h
, TAG_SPAN
, 1, &tag
);
994 nbuf
[BUFSIZ
- 1] = 0;
995 (void)snprintf(nbuf
, BUFSIZ
- 1, "%d.", ord
->pos
++);
999 print_text(h
, "\\(en");
1002 print_text(h
, "\\(hy");
1005 print_text(h
, "\\(bu");
1016 mdoc_it_pre(MDOC_ARGS
)
1018 int i
, type
, wp
, comp
;
1019 const struct mdoc_node
*bl
, *nn
;
1020 struct roffsu width
, offs
;
1023 * XXX: be very careful in changing anything, here. Lists in
1024 * mandoc have many peculiarities; furthermore, they don't
1025 * translate well into HTML and require a bit of mangling.
1028 bl
= n
->parent
->parent
;
1029 if (MDOC_BLOCK
!= n
->type
)
1034 /* Set default width and offset. */
1036 SCALE_HS_INIT(&offs
, 0);
1046 SCALE_HS_INIT(&width
, 2);
1049 SCALE_HS_INIT(&width
, INDENT
);
1053 /* Get width, offset, and compact arguments. */
1055 for (wp
= -1, comp
= i
= 0; i
< (int)bl
->args
->argc
; i
++)
1056 switch (bl
->args
->argv
[i
].arg
) {
1058 wp
= i
; /* Save for later. */
1061 a2width(bl
->args
->argv
[i
].value
[0], &width
);
1064 a2offs(bl
->args
->argv
[i
].value
[0], &offs
);
1066 case (MDOC_Compact
):
1073 /* Override width in some cases. */
1083 SCALE_HS_INIT(&width
, 0);
1086 if (0 == width
.scale
)
1087 SCALE_HS_INIT(&width
, INDENT
);
1091 /* Flip to body/block processing. */
1093 if (MDOC_BODY
== n
->type
)
1094 return(mdoc_it_body_pre(m
, n
, h
, type
));
1095 if (MDOC_BLOCK
== n
->type
)
1096 return(mdoc_it_block_pre(m
, n
, h
, type
, comp
,
1099 /* Override column widths. */
1101 if (MDOC_Column
== type
) {
1102 nn
= n
->parent
->child
;
1103 for (i
= 0; nn
&& nn
!= n
; nn
= nn
->next
, i
++)
1105 if (i
< (int)bl
->args
->argv
[wp
].sz
)
1106 a2width(bl
->args
->argv
[wp
].value
[i
], &width
);
1109 return(mdoc_it_head_pre(m
, n
, h
, type
, &width
));
1115 mdoc_bl_pre(MDOC_ARGS
)
1119 if (MDOC_BLOCK
!= n
->type
)
1121 if (MDOC_Enum
!= a2list(n
))
1124 ord
= malloc(sizeof(struct ord
));
1131 ord
->next
= h
->ords
.head
;
1139 mdoc_bl_post(MDOC_ARGS
)
1143 if (MDOC_BLOCK
!= n
->type
)
1145 if (MDOC_Enum
!= a2list(n
))
1150 h
->ords
.head
= ord
->next
;
1157 mdoc_ex_pre(MDOC_ARGS
)
1159 const struct mdoc_node
*nn
;
1161 struct htmlpair tag
;
1163 PAIR_CLASS_INIT(&tag
, "utility");
1165 print_text(h
, "The");
1166 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1167 t
= print_otag(h
, TAG_SPAN
, 1, &tag
);
1168 print_text(h
, nn
->string
);
1171 h
->flags
|= HTML_NOSPACE
;
1173 if (nn
->next
&& NULL
== nn
->next
->next
)
1174 print_text(h
, ", and");
1178 h
->flags
&= ~HTML_NOSPACE
;
1182 print_text(h
, "utilities exit");
1184 print_text(h
, "utility exits");
1186 print_text(h
, "0 on success, and >0 if an error occurs.");
1193 mdoc_dq_pre(MDOC_ARGS
)
1196 if (MDOC_BODY
!= n
->type
)
1198 print_text(h
, "\\(lq");
1199 h
->flags
|= HTML_NOSPACE
;
1206 mdoc_dq_post(MDOC_ARGS
)
1209 if (MDOC_BODY
!= n
->type
)
1211 h
->flags
|= HTML_NOSPACE
;
1212 print_text(h
, "\\(rq");
1218 mdoc_pq_pre(MDOC_ARGS
)
1221 if (MDOC_BODY
!= n
->type
)
1223 print_text(h
, "\\&(");
1224 h
->flags
|= HTML_NOSPACE
;
1231 mdoc_pq_post(MDOC_ARGS
)
1234 if (MDOC_BODY
!= n
->type
)
1242 mdoc_sq_pre(MDOC_ARGS
)
1245 if (MDOC_BODY
!= n
->type
)
1247 print_text(h
, "\\(oq");
1248 h
->flags
|= HTML_NOSPACE
;
1255 mdoc_sq_post(MDOC_ARGS
)
1258 if (MDOC_BODY
!= n
->type
)
1260 h
->flags
|= HTML_NOSPACE
;
1261 print_text(h
, "\\(aq");
1267 mdoc_em_pre(MDOC_ARGS
)
1269 struct htmlpair tag
;
1271 PAIR_CLASS_INIT(&tag
, "emph");
1272 print_otag(h
, TAG_SPAN
, 1, &tag
);
1279 mdoc_d1_pre(MDOC_ARGS
)
1281 struct htmlpair tag
[2];
1284 if (MDOC_BLOCK
!= n
->type
)
1287 /* FIXME: D1 shouldn't be literal. */
1289 SCALE_VS_INIT(&su
, INDENT
- 2);
1290 bufcat_su(h
, "margin-left", &su
);
1291 PAIR_CLASS_INIT(&tag
[0], "lit");
1292 PAIR_STYLE_INIT(&tag
[1], h
);
1293 print_otag(h
, TAG_DIV
, 2, tag
);
1300 mdoc_sx_pre(MDOC_ARGS
)
1302 struct htmlpair tag
[2];
1303 const struct mdoc_node
*nn
;
1306 strlcpy(buf
, "#", BUFSIZ
);
1307 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1308 html_idcat(buf
, nn
->string
, BUFSIZ
);
1310 html_idcat(buf
, " ", BUFSIZ
);
1313 PAIR_CLASS_INIT(&tag
[0], "link-sec");
1314 PAIR_HREF_INIT(&tag
[1], buf
);
1316 print_otag(h
, TAG_A
, 2, tag
);
1323 mdoc_aq_pre(MDOC_ARGS
)
1326 if (MDOC_BODY
!= n
->type
)
1328 print_text(h
, "\\(la");
1329 h
->flags
|= HTML_NOSPACE
;
1336 mdoc_aq_post(MDOC_ARGS
)
1339 if (MDOC_BODY
!= n
->type
)
1341 h
->flags
|= HTML_NOSPACE
;
1342 print_text(h
, "\\(ra");
1348 mdoc_bd_pre(MDOC_ARGS
)
1350 struct htmlpair tag
[2];
1352 const struct mdoc_node
*bl
, *nn
;
1355 if (MDOC_BLOCK
== n
->type
)
1357 else if (MDOC_HEAD
== n
->type
)
1362 SCALE_VS_INIT(&su
, 0);
1365 for (i
= 0; i
< (int)bl
->args
->argc
; i
++)
1366 switch (bl
->args
->argv
[i
].arg
) {
1368 a2offs(bl
->args
->argv
[i
].value
[0], &su
);
1370 case (MDOC_Compact
):
1373 case (MDOC_Centred
):
1379 case (MDOC_Unfilled
):
1381 case (MDOC_Literal
):
1382 type
= bl
->args
->argv
[i
].arg
;
1388 /* FIXME: -centered, etc. formatting. */
1390 if (MDOC_BLOCK
== n
->type
) {
1391 bufcat_su(h
, "margin-left", &su
);
1392 for (nn
= n
; nn
&& ! comp
; nn
= nn
->parent
) {
1393 if (MDOC_BLOCK
!= nn
->type
)
1395 if (MDOC_Ss
== nn
->tok
|| MDOC_Sh
== nn
->tok
)
1401 print_otag(h
, TAG_DIV
, 0, tag
);
1404 SCALE_VS_INIT(&su
, 1);
1405 bufcat_su(h
, "margin-top", &su
);
1406 PAIR_STYLE_INIT(&tag
[0], h
);
1407 print_otag(h
, TAG_DIV
, 1, tag
);
1411 if (MDOC_Unfilled
!= type
&& MDOC_Literal
!= type
)
1414 PAIR_CLASS_INIT(&tag
[0], "lit");
1415 bufcat_style(h
, "white-space", "pre");
1416 PAIR_STYLE_INIT(&tag
[1], h
);
1417 print_otag(h
, TAG_DIV
, 2, tag
);
1419 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1420 h
->flags
|= HTML_NOSPACE
;
1421 print_mdoc_node(m
, nn
, h
);
1422 if (NULL
== nn
->next
)
1424 if (nn
->prev
&& nn
->prev
->line
< nn
->line
)
1425 print_text(h
, "\n");
1426 else if (NULL
== nn
->prev
)
1427 print_text(h
, "\n");
1436 mdoc_pa_pre(MDOC_ARGS
)
1438 struct htmlpair tag
;
1440 PAIR_CLASS_INIT(&tag
, "file");
1441 print_otag(h
, TAG_SPAN
, 1, &tag
);
1448 mdoc_ad_pre(MDOC_ARGS
)
1450 struct htmlpair tag
;
1452 PAIR_CLASS_INIT(&tag
, "addr");
1453 print_otag(h
, TAG_SPAN
, 1, &tag
);
1460 mdoc_an_pre(MDOC_ARGS
)
1462 struct htmlpair tag
;
1464 /* TODO: -split and -nosplit (see termp_an_pre()). */
1466 PAIR_CLASS_INIT(&tag
, "author");
1467 print_otag(h
, TAG_SPAN
, 1, &tag
);
1474 mdoc_cd_pre(MDOC_ARGS
)
1476 struct htmlpair tag
;
1478 print_otag(h
, TAG_DIV
, 0, NULL
);
1479 PAIR_CLASS_INIT(&tag
, "config");
1480 print_otag(h
, TAG_SPAN
, 1, &tag
);
1487 mdoc_dv_pre(MDOC_ARGS
)
1489 struct htmlpair tag
;
1491 PAIR_CLASS_INIT(&tag
, "define");
1492 print_otag(h
, TAG_SPAN
, 1, &tag
);
1499 mdoc_ev_pre(MDOC_ARGS
)
1501 struct htmlpair tag
;
1503 PAIR_CLASS_INIT(&tag
, "env");
1504 print_otag(h
, TAG_SPAN
, 1, &tag
);
1511 mdoc_er_pre(MDOC_ARGS
)
1513 struct htmlpair tag
;
1515 PAIR_CLASS_INIT(&tag
, "errno");
1516 print_otag(h
, TAG_SPAN
, 1, &tag
);
1523 mdoc_fa_pre(MDOC_ARGS
)
1525 const struct mdoc_node
*nn
;
1526 struct htmlpair tag
;
1529 PAIR_CLASS_INIT(&tag
, "farg");
1530 if (n
->parent
->tok
!= MDOC_Fo
) {
1531 print_otag(h
, TAG_SPAN
, 1, &tag
);
1535 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1536 t
= print_otag(h
, TAG_SPAN
, 1, &tag
);
1537 print_text(h
, nn
->string
);
1543 if (n
->child
&& n
->next
&& n
->next
->tok
== MDOC_Fa
)
1552 mdoc_fd_pre(MDOC_ARGS
)
1554 struct htmlpair tag
;
1557 if (SEC_SYNOPSIS
== n
->sec
) {
1558 if (n
->next
&& MDOC_Fd
!= n
->next
->tok
) {
1559 SCALE_VS_INIT(&su
, 1);
1560 bufcat_su(h
, "margin-bottom", &su
);
1561 PAIR_STYLE_INIT(&tag
, h
);
1562 print_otag(h
, TAG_DIV
, 1, &tag
);
1564 print_otag(h
, TAG_DIV
, 0, NULL
);
1567 PAIR_CLASS_INIT(&tag
, "macro");
1568 print_otag(h
, TAG_SPAN
, 1, &tag
);
1575 mdoc_vt_pre(MDOC_ARGS
)
1577 struct htmlpair tag
;
1580 if (SEC_SYNOPSIS
== n
->sec
&& MDOC_BLOCK
== n
->type
) {
1581 if (n
->next
&& MDOC_Vt
!= n
->next
->tok
) {
1582 SCALE_VS_INIT(&su
, 1);
1583 bufcat_su(h
, "margin-bottom", &su
);
1584 PAIR_STYLE_INIT(&tag
, h
);
1585 print_otag(h
, TAG_DIV
, 1, &tag
);
1587 print_otag(h
, TAG_DIV
, 0, NULL
);
1590 } else if (MDOC_HEAD
== n
->type
)
1593 PAIR_CLASS_INIT(&tag
, "type");
1594 print_otag(h
, TAG_SPAN
, 1, &tag
);
1601 mdoc_ft_pre(MDOC_ARGS
)
1603 struct htmlpair tag
;
1605 if (SEC_SYNOPSIS
== n
->sec
)
1606 print_otag(h
, TAG_DIV
, 0, NULL
);
1608 PAIR_CLASS_INIT(&tag
, "ftype");
1609 print_otag(h
, TAG_SPAN
, 1, &tag
);
1616 mdoc_fn_pre(MDOC_ARGS
)
1619 struct htmlpair tag
[2];
1620 const struct mdoc_node
*nn
;
1622 const char *sp
, *ep
;
1626 if (SEC_SYNOPSIS
== n
->sec
) {
1627 SCALE_HS_INIT(&su
, INDENT
);
1628 bufcat_su(h
, "margin-left", &su
);
1629 su
.scale
= -su
.scale
;
1630 bufcat_su(h
, "text-indent", &su
);
1632 SCALE_VS_INIT(&su
, 1);
1633 bufcat_su(h
, "margin-bottom", &su
);
1635 PAIR_STYLE_INIT(&tag
[0], h
);
1636 print_otag(h
, TAG_DIV
, 1, tag
);
1639 /* Split apart into type and name. */
1640 assert(n
->child
->string
);
1641 sp
= n
->child
->string
;
1643 ep
= strchr(sp
, ' ');
1645 PAIR_CLASS_INIT(&tag
[0], "ftype");
1646 t
= print_otag(h
, TAG_SPAN
, 1, tag
);
1649 sz
= MIN((int)(ep
- sp
), BUFSIZ
- 1);
1650 (void)memcpy(nbuf
, sp
, (size_t)sz
);
1652 print_text(h
, nbuf
);
1654 ep
= strchr(sp
, ' ');
1659 PAIR_CLASS_INIT(&tag
[0], "fname");
1662 * FIXME: only refer to IDs that we know exist.
1666 if (SEC_SYNOPSIS
== n
->sec
) {
1668 html_idcat(nbuf
, sp
, BUFSIZ
);
1669 PAIR_ID_INIT(&tag
[1], nbuf
);
1671 strlcpy(nbuf
, "#", BUFSIZ
);
1672 html_idcat(nbuf
, sp
, BUFSIZ
);
1673 PAIR_HREF_INIT(&tag
[1], nbuf
);
1677 t
= print_otag(h
, TAG_SPAN
, 1, tag
);
1680 strlcpy(nbuf
, sp
, BUFSIZ
);
1681 print_text(h
, nbuf
);
1686 h
->flags
|= HTML_NOSPACE
;
1690 PAIR_CLASS_INIT(&tag
[0], "farg");
1691 bufcat_style(h
, "white-space", "nowrap");
1692 PAIR_STYLE_INIT(&tag
[1], h
);
1694 for (nn
= n
->child
->next
; nn
; nn
= nn
->next
) {
1696 if (SEC_SYNOPSIS
== n
->sec
)
1698 t
= print_otag(h
, TAG_SPAN
, i
, tag
);
1699 print_text(h
, nn
->string
);
1706 if (SEC_SYNOPSIS
== n
->sec
)
1715 mdoc_sp_pre(MDOC_ARGS
)
1718 struct htmlpair tag
;
1723 /* FIXME: can this have a scaling indicator? */
1724 len
= n
->child
? atoi(n
->child
->string
) : 1;
1734 SCALE_VS_INIT(&su
, len
);
1735 bufcat_su(h
, "height", &su
);
1736 PAIR_STYLE_INIT(&tag
, h
);
1737 print_otag(h
, TAG_DIV
, 1, &tag
);
1738 /* So the div isn't empty: */
1739 print_text(h
, "\\~");
1748 mdoc_brq_pre(MDOC_ARGS
)
1751 if (MDOC_BODY
!= n
->type
)
1753 print_text(h
, "\\(lC");
1754 h
->flags
|= HTML_NOSPACE
;
1761 mdoc_brq_post(MDOC_ARGS
)
1764 if (MDOC_BODY
!= n
->type
)
1766 h
->flags
|= HTML_NOSPACE
;
1767 print_text(h
, "\\(rC");
1773 mdoc_lk_pre(MDOC_ARGS
)
1775 const struct mdoc_node
*nn
;
1776 struct htmlpair tag
[2];
1780 PAIR_CLASS_INIT(&tag
[0], "link-ext");
1781 PAIR_HREF_INIT(&tag
[1], nn
->string
);
1782 print_otag(h
, TAG_A
, 2, tag
);
1784 if (NULL
== nn
->next
)
1787 for (nn
= nn
->next
; nn
; nn
= nn
->next
)
1788 print_text(h
, nn
->string
);
1796 mdoc_mt_pre(MDOC_ARGS
)
1798 struct htmlpair tag
[2];
1800 const struct mdoc_node
*nn
;
1802 PAIR_CLASS_INIT(&tag
[0], "link-mail");
1804 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1806 bufcat(h
, "mailto:");
1807 bufcat(h
, nn
->string
);
1808 PAIR_HREF_INIT(&tag
[1], h
->buf
);
1809 t
= print_otag(h
, TAG_A
, 2, tag
);
1810 print_text(h
, nn
->string
);
1820 mdoc_fo_pre(MDOC_ARGS
)
1822 struct htmlpair tag
;
1825 if (MDOC_BODY
== n
->type
) {
1826 h
->flags
|= HTML_NOSPACE
;
1828 h
->flags
|= HTML_NOSPACE
;
1830 } else if (MDOC_BLOCK
== n
->type
&& n
->next
) {
1831 SCALE_VS_INIT(&su
, 1);
1832 bufcat_su(h
, "margin-bottom", &su
);
1833 PAIR_STYLE_INIT(&tag
, h
);
1834 print_otag(h
, TAG_DIV
, 1, &tag
);
1838 PAIR_CLASS_INIT(&tag
, "fname");
1839 print_otag(h
, TAG_SPAN
, 1, &tag
);
1846 mdoc_fo_post(MDOC_ARGS
)
1848 if (MDOC_BODY
!= n
->type
)
1850 h
->flags
|= HTML_NOSPACE
;
1852 h
->flags
|= HTML_NOSPACE
;
1859 mdoc_in_pre(MDOC_ARGS
)
1861 const struct mdoc_node
*nn
;
1863 struct htmlpair tag
[2];
1867 if (SEC_SYNOPSIS
== n
->sec
) {
1868 if (n
->next
&& MDOC_In
!= n
->next
->tok
) {
1869 SCALE_VS_INIT(&su
, 1);
1870 bufcat_su(h
, "margin-bottom", &su
);
1871 PAIR_STYLE_INIT(&tag
[0], h
);
1872 print_otag(h
, TAG_DIV
, 1, tag
);
1874 print_otag(h
, TAG_DIV
, 0, NULL
);
1877 /* FIXME: there's a buffer bug in here somewhere. */
1879 PAIR_CLASS_INIT(&tag
[0], "includes");
1880 print_otag(h
, TAG_SPAN
, 1, tag
);
1882 if (SEC_SYNOPSIS
== n
->sec
)
1883 print_text(h
, "#include");
1886 h
->flags
|= HTML_NOSPACE
;
1888 /* XXX -- see warning in termp_in_post(). */
1890 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1891 PAIR_CLASS_INIT(&tag
[0], "link-includes");
1894 if (h
->base_includes
) {
1895 buffmt_includes(h
, nn
->string
);
1896 PAIR_HREF_INIT(&tag
[i
], h
->buf
);
1899 t
= print_otag(h
, TAG_A
, i
, tag
);
1900 print_mdoc_node(m
, nn
, h
);
1904 h
->flags
|= HTML_NOSPACE
;
1913 mdoc_ic_pre(MDOC_ARGS
)
1915 struct htmlpair tag
;
1917 PAIR_CLASS_INIT(&tag
, "cmd");
1918 print_otag(h
, TAG_SPAN
, 1, &tag
);
1925 mdoc_rv_pre(MDOC_ARGS
)
1927 const struct mdoc_node
*nn
;
1928 struct htmlpair tag
;
1931 print_otag(h
, TAG_DIV
, 0, NULL
);
1932 print_text(h
, "The");
1934 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1935 PAIR_CLASS_INIT(&tag
, "fname");
1936 t
= print_otag(h
, TAG_SPAN
, 1, &tag
);
1937 print_text(h
, nn
->string
);
1940 h
->flags
|= HTML_NOSPACE
;
1941 if (nn
->next
&& NULL
== nn
->next
->next
)
1942 print_text(h
, "(), and");
1944 print_text(h
, "(),");
1946 print_text(h
, "()");
1950 print_text(h
, "functions return");
1952 print_text(h
, "function returns");
1954 print_text(h
, "the value 0 if successful; otherwise the value "
1955 "-1 is returned and the global variable");
1957 PAIR_CLASS_INIT(&tag
, "var");
1958 t
= print_otag(h
, TAG_SPAN
, 1, &tag
);
1959 print_text(h
, "errno");
1961 print_text(h
, "is set to indicate the error.");
1968 mdoc_va_pre(MDOC_ARGS
)
1970 struct htmlpair tag
;
1972 PAIR_CLASS_INIT(&tag
, "var");
1973 print_otag(h
, TAG_SPAN
, 1, &tag
);
1980 mdoc_bq_pre(MDOC_ARGS
)
1983 if (MDOC_BODY
!= n
->type
)
1985 print_text(h
, "\\(lB");
1986 h
->flags
|= HTML_NOSPACE
;
1993 mdoc_bq_post(MDOC_ARGS
)
1996 if (MDOC_BODY
!= n
->type
)
1998 h
->flags
|= HTML_NOSPACE
;
1999 print_text(h
, "\\(rB");
2005 mdoc_ap_pre(MDOC_ARGS
)
2008 h
->flags
|= HTML_NOSPACE
;
2009 print_text(h
, "\\(aq");
2010 h
->flags
|= HTML_NOSPACE
;
2017 mdoc_bf_pre(MDOC_ARGS
)
2020 struct htmlpair tag
[2];
2023 if (MDOC_HEAD
== n
->type
)
2025 else if (MDOC_BLOCK
!= n
->type
)
2028 PAIR_CLASS_INIT(&tag
[0], "lit");
2030 if (n
->head
->child
) {
2031 if ( ! strcmp("Em", n
->head
->child
->string
))
2032 PAIR_CLASS_INIT(&tag
[0], "emph");
2033 else if ( ! strcmp("Sy", n
->head
->child
->string
))
2034 PAIR_CLASS_INIT(&tag
[0], "symb");
2035 else if ( ! strcmp("Li", n
->head
->child
->string
))
2036 PAIR_CLASS_INIT(&tag
[0], "lit");
2039 for (i
= 0; i
< (int)n
->args
->argc
; i
++)
2040 switch (n
->args
->argv
[i
].arg
) {
2041 case (MDOC_Symbolic
):
2042 PAIR_CLASS_INIT(&tag
[0], "symb");
2044 case (MDOC_Literal
):
2045 PAIR_CLASS_INIT(&tag
[0], "lit");
2047 case (MDOC_Emphasis
):
2048 PAIR_CLASS_INIT(&tag
[0], "emph");
2055 /* FIXME: div's have spaces stripped--we want them. */
2057 bufcat_style(h
, "display", "inline");
2058 SCALE_HS_INIT(&su
, 1);
2059 bufcat_su(h
, "margin-right", &su
);
2060 PAIR_STYLE_INIT(&tag
[1], h
);
2061 print_otag(h
, TAG_DIV
, 2, tag
);
2068 mdoc_ms_pre(MDOC_ARGS
)
2070 struct htmlpair tag
;
2072 PAIR_CLASS_INIT(&tag
, "symb");
2073 print_otag(h
, TAG_SPAN
, 1, &tag
);
2080 mdoc_pf_pre(MDOC_ARGS
)
2083 h
->flags
|= HTML_IGNDELIM
;
2090 mdoc_pf_post(MDOC_ARGS
)
2093 h
->flags
&= ~HTML_IGNDELIM
;
2094 h
->flags
|= HTML_NOSPACE
;
2100 mdoc_rs_pre(MDOC_ARGS
)
2102 struct htmlpair tag
;
2105 if (MDOC_BLOCK
!= n
->type
)
2108 if (n
->prev
&& SEC_SEE_ALSO
== n
->sec
) {
2109 SCALE_VS_INIT(&su
, 1);
2110 bufcat_su(h
, "margin-top", &su
);
2111 PAIR_STYLE_INIT(&tag
, h
);
2112 print_otag(h
, TAG_DIV
, 1, &tag
);
2115 PAIR_CLASS_INIT(&tag
, "ref");
2116 print_otag(h
, TAG_SPAN
, 1, &tag
);
2124 mdoc_li_pre(MDOC_ARGS
)
2126 struct htmlpair tag
;
2128 PAIR_CLASS_INIT(&tag
, "lit");
2129 print_otag(h
, TAG_SPAN
, 1, &tag
);
2136 mdoc_sy_pre(MDOC_ARGS
)
2138 struct htmlpair tag
;
2140 PAIR_CLASS_INIT(&tag
, "symb");
2141 print_otag(h
, TAG_SPAN
, 1, &tag
);
2148 mdoc_bt_pre(MDOC_ARGS
)
2151 print_text(h
, "is currently in beta test.");
2158 mdoc_ud_pre(MDOC_ARGS
)
2161 print_text(h
, "currently under development.");
2168 mdoc_lb_pre(MDOC_ARGS
)
2170 struct htmlpair tag
;
2172 if (SEC_SYNOPSIS
== n
->sec
)
2173 print_otag(h
, TAG_DIV
, 0, NULL
);
2174 PAIR_CLASS_INIT(&tag
, "lib");
2175 print_otag(h
, TAG_SPAN
, 1, &tag
);
2182 mdoc__x_pre(MDOC_ARGS
)
2184 struct htmlpair tag
[2];
2188 PAIR_CLASS_INIT(&tag
[0], "ref-auth");
2191 PAIR_CLASS_INIT(&tag
[0], "ref-book");
2194 PAIR_CLASS_INIT(&tag
[0], "ref-city");
2197 PAIR_CLASS_INIT(&tag
[0], "ref-date");
2200 PAIR_CLASS_INIT(&tag
[0], "ref-issue");
2203 PAIR_CLASS_INIT(&tag
[0], "ref-jrnl");
2206 PAIR_CLASS_INIT(&tag
[0], "ref-num");
2209 PAIR_CLASS_INIT(&tag
[0], "ref-opt");
2212 PAIR_CLASS_INIT(&tag
[0], "ref-page");
2215 PAIR_CLASS_INIT(&tag
[0], "ref-corp");
2218 PAIR_CLASS_INIT(&tag
[0], "ref-rep");
2221 PAIR_CLASS_INIT(&tag
[0], "ref-title");
2222 print_text(h
, "\\(lq");
2223 h
->flags
|= HTML_NOSPACE
;
2226 PAIR_CLASS_INIT(&tag
[0], "link-ref");
2229 PAIR_CLASS_INIT(&tag
[0], "ref-vol");
2236 if (MDOC__U
!= n
->tok
) {
2237 print_otag(h
, TAG_SPAN
, 1, tag
);
2241 PAIR_HREF_INIT(&tag
[1], n
->child
->string
);
2242 print_otag(h
, TAG_A
, 2, tag
);
2249 mdoc__x_post(MDOC_ARGS
)
2252 h
->flags
|= HTML_NOSPACE
;
2255 print_text(h
, "\\(rq");
2256 h
->flags
|= HTML_NOSPACE
;
2261 print_text(h
, n
->next
? "," : ".");