]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_html.c
1 /* $Id: mdoc_html.c,v 1.222 2015/02/05 00:14:13 schwarze Exp $ */
3 * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include <sys/types.h>
29 #include "mandoc_aux.h"
37 #define MDOC_ARGS const struct mdoc_meta *meta, \
38 const struct mdoc_node *n, \
42 #define MIN(a,b) ((/*CONSTCOND*/(a)<(b))?(a):(b))
46 int (*pre
)(MDOC_ARGS
);
47 void (*post
)(MDOC_ARGS
);
50 static void print_mdoc(MDOC_ARGS
);
51 static void print_mdoc_head(MDOC_ARGS
);
52 static void print_mdoc_node(MDOC_ARGS
);
53 static void print_mdoc_nodelist(MDOC_ARGS
);
54 static void synopsis_pre(struct html
*,
55 const struct mdoc_node
*);
57 static void a2width(const char *, struct roffsu
*);
59 static void mdoc_root_post(MDOC_ARGS
);
60 static int mdoc_root_pre(MDOC_ARGS
);
62 static void mdoc__x_post(MDOC_ARGS
);
63 static int mdoc__x_pre(MDOC_ARGS
);
64 static int mdoc_ad_pre(MDOC_ARGS
);
65 static int mdoc_an_pre(MDOC_ARGS
);
66 static int mdoc_ap_pre(MDOC_ARGS
);
67 static int mdoc_ar_pre(MDOC_ARGS
);
68 static int mdoc_bd_pre(MDOC_ARGS
);
69 static int mdoc_bf_pre(MDOC_ARGS
);
70 static void mdoc_bk_post(MDOC_ARGS
);
71 static int mdoc_bk_pre(MDOC_ARGS
);
72 static int mdoc_bl_pre(MDOC_ARGS
);
73 static int mdoc_bt_pre(MDOC_ARGS
);
74 static int mdoc_bx_pre(MDOC_ARGS
);
75 static int mdoc_cd_pre(MDOC_ARGS
);
76 static int mdoc_d1_pre(MDOC_ARGS
);
77 static int mdoc_dv_pre(MDOC_ARGS
);
78 static int mdoc_fa_pre(MDOC_ARGS
);
79 static int mdoc_fd_pre(MDOC_ARGS
);
80 static int mdoc_fl_pre(MDOC_ARGS
);
81 static int mdoc_fn_pre(MDOC_ARGS
);
82 static int mdoc_ft_pre(MDOC_ARGS
);
83 static int mdoc_em_pre(MDOC_ARGS
);
84 static void mdoc_eo_post(MDOC_ARGS
);
85 static int mdoc_eo_pre(MDOC_ARGS
);
86 static int mdoc_er_pre(MDOC_ARGS
);
87 static int mdoc_ev_pre(MDOC_ARGS
);
88 static int mdoc_ex_pre(MDOC_ARGS
);
89 static void mdoc_fo_post(MDOC_ARGS
);
90 static int mdoc_fo_pre(MDOC_ARGS
);
91 static int mdoc_ic_pre(MDOC_ARGS
);
92 static int mdoc_igndelim_pre(MDOC_ARGS
);
93 static int mdoc_in_pre(MDOC_ARGS
);
94 static int mdoc_it_pre(MDOC_ARGS
);
95 static int mdoc_lb_pre(MDOC_ARGS
);
96 static int mdoc_li_pre(MDOC_ARGS
);
97 static int mdoc_lk_pre(MDOC_ARGS
);
98 static int mdoc_mt_pre(MDOC_ARGS
);
99 static int mdoc_ms_pre(MDOC_ARGS
);
100 static int mdoc_nd_pre(MDOC_ARGS
);
101 static int mdoc_nm_pre(MDOC_ARGS
);
102 static int mdoc_no_pre(MDOC_ARGS
);
103 static int mdoc_ns_pre(MDOC_ARGS
);
104 static int mdoc_pa_pre(MDOC_ARGS
);
105 static void mdoc_pf_post(MDOC_ARGS
);
106 static int mdoc_pp_pre(MDOC_ARGS
);
107 static void mdoc_quote_post(MDOC_ARGS
);
108 static int mdoc_quote_pre(MDOC_ARGS
);
109 static int mdoc_rs_pre(MDOC_ARGS
);
110 static int mdoc_rv_pre(MDOC_ARGS
);
111 static int mdoc_sh_pre(MDOC_ARGS
);
112 static int mdoc_skip_pre(MDOC_ARGS
);
113 static int mdoc_sm_pre(MDOC_ARGS
);
114 static int mdoc_sp_pre(MDOC_ARGS
);
115 static int mdoc_ss_pre(MDOC_ARGS
);
116 static int mdoc_sx_pre(MDOC_ARGS
);
117 static int mdoc_sy_pre(MDOC_ARGS
);
118 static int mdoc_ud_pre(MDOC_ARGS
);
119 static int mdoc_va_pre(MDOC_ARGS
);
120 static int mdoc_vt_pre(MDOC_ARGS
);
121 static int mdoc_xr_pre(MDOC_ARGS
);
122 static int mdoc_xx_pre(MDOC_ARGS
);
124 static const struct htmlmdoc mdocs
[MDOC_MAX
] = {
125 {mdoc_ap_pre
, NULL
}, /* Ap */
126 {NULL
, NULL
}, /* Dd */
127 {NULL
, NULL
}, /* Dt */
128 {NULL
, NULL
}, /* Os */
129 {mdoc_sh_pre
, NULL
}, /* Sh */
130 {mdoc_ss_pre
, NULL
}, /* Ss */
131 {mdoc_pp_pre
, NULL
}, /* Pp */
132 {mdoc_d1_pre
, NULL
}, /* D1 */
133 {mdoc_d1_pre
, NULL
}, /* Dl */
134 {mdoc_bd_pre
, NULL
}, /* Bd */
135 {NULL
, NULL
}, /* Ed */
136 {mdoc_bl_pre
, NULL
}, /* Bl */
137 {NULL
, NULL
}, /* El */
138 {mdoc_it_pre
, NULL
}, /* It */
139 {mdoc_ad_pre
, NULL
}, /* Ad */
140 {mdoc_an_pre
, NULL
}, /* An */
141 {mdoc_ar_pre
, NULL
}, /* Ar */
142 {mdoc_cd_pre
, NULL
}, /* Cd */
143 {mdoc_fl_pre
, NULL
}, /* Cm */
144 {mdoc_dv_pre
, NULL
}, /* Dv */
145 {mdoc_er_pre
, NULL
}, /* Er */
146 {mdoc_ev_pre
, NULL
}, /* Ev */
147 {mdoc_ex_pre
, NULL
}, /* Ex */
148 {mdoc_fa_pre
, NULL
}, /* Fa */
149 {mdoc_fd_pre
, NULL
}, /* Fd */
150 {mdoc_fl_pre
, NULL
}, /* Fl */
151 {mdoc_fn_pre
, NULL
}, /* Fn */
152 {mdoc_ft_pre
, NULL
}, /* Ft */
153 {mdoc_ic_pre
, NULL
}, /* Ic */
154 {mdoc_in_pre
, NULL
}, /* In */
155 {mdoc_li_pre
, NULL
}, /* Li */
156 {mdoc_nd_pre
, NULL
}, /* Nd */
157 {mdoc_nm_pre
, NULL
}, /* Nm */
158 {mdoc_quote_pre
, mdoc_quote_post
}, /* Op */
159 {mdoc_ft_pre
, NULL
}, /* Ot */
160 {mdoc_pa_pre
, NULL
}, /* Pa */
161 {mdoc_rv_pre
, NULL
}, /* Rv */
162 {NULL
, NULL
}, /* St */
163 {mdoc_va_pre
, NULL
}, /* Va */
164 {mdoc_vt_pre
, NULL
}, /* Vt */
165 {mdoc_xr_pre
, NULL
}, /* Xr */
166 {mdoc__x_pre
, mdoc__x_post
}, /* %A */
167 {mdoc__x_pre
, mdoc__x_post
}, /* %B */
168 {mdoc__x_pre
, mdoc__x_post
}, /* %D */
169 {mdoc__x_pre
, mdoc__x_post
}, /* %I */
170 {mdoc__x_pre
, mdoc__x_post
}, /* %J */
171 {mdoc__x_pre
, mdoc__x_post
}, /* %N */
172 {mdoc__x_pre
, mdoc__x_post
}, /* %O */
173 {mdoc__x_pre
, mdoc__x_post
}, /* %P */
174 {mdoc__x_pre
, mdoc__x_post
}, /* %R */
175 {mdoc__x_pre
, mdoc__x_post
}, /* %T */
176 {mdoc__x_pre
, mdoc__x_post
}, /* %V */
177 {NULL
, NULL
}, /* Ac */
178 {mdoc_quote_pre
, mdoc_quote_post
}, /* Ao */
179 {mdoc_quote_pre
, mdoc_quote_post
}, /* Aq */
180 {NULL
, NULL
}, /* At */
181 {NULL
, NULL
}, /* Bc */
182 {mdoc_bf_pre
, NULL
}, /* Bf */
183 {mdoc_quote_pre
, mdoc_quote_post
}, /* Bo */
184 {mdoc_quote_pre
, mdoc_quote_post
}, /* Bq */
185 {mdoc_xx_pre
, NULL
}, /* Bsx */
186 {mdoc_bx_pre
, NULL
}, /* Bx */
187 {mdoc_skip_pre
, NULL
}, /* Db */
188 {NULL
, NULL
}, /* Dc */
189 {mdoc_quote_pre
, mdoc_quote_post
}, /* Do */
190 {mdoc_quote_pre
, mdoc_quote_post
}, /* Dq */
191 {NULL
, NULL
}, /* Ec */ /* FIXME: no space */
192 {NULL
, NULL
}, /* Ef */
193 {mdoc_em_pre
, NULL
}, /* Em */
194 {mdoc_eo_pre
, mdoc_eo_post
}, /* Eo */
195 {mdoc_xx_pre
, NULL
}, /* Fx */
196 {mdoc_ms_pre
, NULL
}, /* Ms */
197 {mdoc_no_pre
, NULL
}, /* No */
198 {mdoc_ns_pre
, NULL
}, /* Ns */
199 {mdoc_xx_pre
, NULL
}, /* Nx */
200 {mdoc_xx_pre
, NULL
}, /* Ox */
201 {NULL
, NULL
}, /* Pc */
202 {mdoc_igndelim_pre
, mdoc_pf_post
}, /* Pf */
203 {mdoc_quote_pre
, mdoc_quote_post
}, /* Po */
204 {mdoc_quote_pre
, mdoc_quote_post
}, /* Pq */
205 {NULL
, NULL
}, /* Qc */
206 {mdoc_quote_pre
, mdoc_quote_post
}, /* Ql */
207 {mdoc_quote_pre
, mdoc_quote_post
}, /* Qo */
208 {mdoc_quote_pre
, mdoc_quote_post
}, /* Qq */
209 {NULL
, NULL
}, /* Re */
210 {mdoc_rs_pre
, NULL
}, /* Rs */
211 {NULL
, NULL
}, /* Sc */
212 {mdoc_quote_pre
, mdoc_quote_post
}, /* So */
213 {mdoc_quote_pre
, mdoc_quote_post
}, /* Sq */
214 {mdoc_sm_pre
, NULL
}, /* Sm */
215 {mdoc_sx_pre
, NULL
}, /* Sx */
216 {mdoc_sy_pre
, NULL
}, /* Sy */
217 {NULL
, NULL
}, /* Tn */
218 {mdoc_xx_pre
, NULL
}, /* Ux */
219 {NULL
, NULL
}, /* Xc */
220 {NULL
, NULL
}, /* Xo */
221 {mdoc_fo_pre
, mdoc_fo_post
}, /* Fo */
222 {NULL
, NULL
}, /* Fc */
223 {mdoc_quote_pre
, mdoc_quote_post
}, /* Oo */
224 {NULL
, NULL
}, /* Oc */
225 {mdoc_bk_pre
, mdoc_bk_post
}, /* Bk */
226 {NULL
, NULL
}, /* Ek */
227 {mdoc_bt_pre
, NULL
}, /* Bt */
228 {NULL
, NULL
}, /* Hf */
229 {mdoc_em_pre
, NULL
}, /* Fr */
230 {mdoc_ud_pre
, NULL
}, /* Ud */
231 {mdoc_lb_pre
, NULL
}, /* Lb */
232 {mdoc_pp_pre
, NULL
}, /* Lp */
233 {mdoc_lk_pre
, NULL
}, /* Lk */
234 {mdoc_mt_pre
, NULL
}, /* Mt */
235 {mdoc_quote_pre
, mdoc_quote_post
}, /* Brq */
236 {mdoc_quote_pre
, mdoc_quote_post
}, /* Bro */
237 {NULL
, NULL
}, /* Brc */
238 {mdoc__x_pre
, mdoc__x_post
}, /* %C */
239 {mdoc_skip_pre
, NULL
}, /* Es */
240 {mdoc_quote_pre
, mdoc_quote_post
}, /* En */
241 {mdoc_xx_pre
, NULL
}, /* Dx */
242 {mdoc__x_pre
, mdoc__x_post
}, /* %Q */
243 {mdoc_sp_pre
, NULL
}, /* br */
244 {mdoc_sp_pre
, NULL
}, /* sp */
245 {mdoc__x_pre
, mdoc__x_post
}, /* %U */
246 {NULL
, NULL
}, /* Ta */
247 {mdoc_skip_pre
, NULL
}, /* ll */
250 static const char * const lists
[LIST_MAX
] = {
267 html_mdoc(void *arg
, const struct mdoc
*mdoc
)
270 print_mdoc(mdoc_meta(mdoc
), mdoc_node(mdoc
),
276 * Calculate the scaling unit passed in a `-width' argument. This uses
277 * either a native scaling unit (e.g., 1i, 2m) or the string length of
281 a2width(const char *p
, struct roffsu
*su
)
284 if (a2roffsu(p
, su
, SCALE_MAX
) < 2) {
286 su
->scale
= html_strlen(p
);
287 } else if (su
->scale
< 0.0)
292 * See the same function in mdoc_term.c for documentation.
295 synopsis_pre(struct html
*h
, const struct mdoc_node
*n
)
298 if (NULL
== n
->prev
|| ! (MDOC_SYNPRETTY
& n
->flags
))
301 if (n
->prev
->tok
== n
->tok
&&
305 print_otag(h
, TAG_BR
, 0, NULL
);
309 switch (n
->prev
->tok
) {
322 if (MDOC_Fn
!= n
->tok
&& MDOC_Fo
!= n
->tok
) {
328 print_otag(h
, TAG_BR
, 0, NULL
);
334 print_mdoc(MDOC_ARGS
)
339 PAIR_CLASS_INIT(&tag
, "mandoc");
341 if ( ! (HTML_FRAGMENT
& h
->oflags
)) {
343 t
= print_otag(h
, TAG_HTML
, 0, NULL
);
344 tt
= print_otag(h
, TAG_HEAD
, 0, NULL
);
345 print_mdoc_head(meta
, n
, h
);
347 print_otag(h
, TAG_BODY
, 0, NULL
);
348 print_otag(h
, TAG_DIV
, 1, &tag
);
350 t
= print_otag(h
, TAG_DIV
, 1, &tag
);
352 print_mdoc_nodelist(meta
, n
, h
);
357 print_mdoc_head(MDOC_ARGS
)
362 bufcat(h
, meta
->title
);
364 bufcat_fmt(h
, "(%s)", meta
->msec
);
366 bufcat_fmt(h
, " (%s)", meta
->arch
);
368 print_otag(h
, TAG_TITLE
, 0, NULL
);
369 print_text(h
, h
->buf
);
373 print_mdoc_nodelist(MDOC_ARGS
)
377 print_mdoc_node(meta
, n
, h
);
383 print_mdoc_node(MDOC_ARGS
)
393 child
= mdoc_root_pre(meta
, n
, h
);
396 /* No tables in this mode... */
397 assert(NULL
== h
->tblt
);
400 * Make sure that if we're in a literal mode already
401 * (i.e., within a <PRE>) don't print the newline.
403 if (' ' == *n
->string
&& MDOC_LINE
& n
->flags
)
404 if ( ! (HTML_LITERAL
& h
->flags
))
405 print_otag(h
, TAG_BR
, 0, NULL
);
406 if (MDOC_DELIMC
& n
->flags
)
407 h
->flags
|= HTML_NOSPACE
;
408 print_text(h
, n
->string
);
409 if (MDOC_DELIMO
& n
->flags
)
410 h
->flags
|= HTML_NOSPACE
;
413 print_eqn(h
, n
->eqn
);
417 * This will take care of initialising all of the table
418 * state data for the first table, then tearing it down
421 print_tbl(h
, n
->span
);
425 * Close out the current table, if it's open, and unset
426 * the "meta" table state. This will be reopened on the
427 * next table element.
429 if (h
->tblt
!= NULL
) {
433 assert(h
->tblt
== NULL
);
434 if (mdocs
[n
->tok
].pre
&& (n
->end
== ENDBODY_NOT
|| n
->child
))
435 child
= (*mdocs
[n
->tok
].pre
)(meta
, n
, h
);
439 if (h
->flags
& HTML_KEEP
&& n
->flags
& MDOC_LINE
) {
440 h
->flags
&= ~HTML_KEEP
;
441 h
->flags
|= HTML_PREKEEP
;
444 if (child
&& n
->child
)
445 print_mdoc_nodelist(meta
, n
->child
, h
);
451 mdoc_root_post(meta
, n
, h
);
456 if ( ! mdocs
[n
->tok
].post
|| n
->flags
& MDOC_ENDED
)
458 (*mdocs
[n
->tok
].post
)(meta
, n
, h
);
459 if (n
->end
!= ENDBODY_NOT
)
460 n
->pending
->flags
|= MDOC_ENDED
;
461 if (n
->end
== ENDBODY_NOSPACE
)
462 h
->flags
|= HTML_NOSPACE
;
468 mdoc_root_post(MDOC_ARGS
)
473 PAIR_CLASS_INIT(&tag
, "foot");
474 t
= print_otag(h
, TAG_TABLE
, 1, &tag
);
476 print_otag(h
, TAG_TBODY
, 0, NULL
);
478 tt
= print_otag(h
, TAG_TR
, 0, NULL
);
480 PAIR_CLASS_INIT(&tag
, "foot-date");
481 print_otag(h
, TAG_TD
, 1, &tag
);
482 print_text(h
, meta
->date
);
485 PAIR_CLASS_INIT(&tag
, "foot-os");
486 print_otag(h
, TAG_TD
, 1, &tag
);
487 print_text(h
, meta
->os
);
492 mdoc_root_pre(MDOC_ARGS
)
496 char *volume
, *title
;
498 if (NULL
== meta
->arch
)
499 volume
= mandoc_strdup(meta
->vol
);
501 mandoc_asprintf(&volume
, "%s (%s)",
502 meta
->vol
, meta
->arch
);
504 if (NULL
== meta
->msec
)
505 title
= mandoc_strdup(meta
->title
);
507 mandoc_asprintf(&title
, "%s(%s)",
508 meta
->title
, meta
->msec
);
510 PAIR_CLASS_INIT(&tag
, "head");
511 t
= print_otag(h
, TAG_TABLE
, 1, &tag
);
513 print_otag(h
, TAG_TBODY
, 0, NULL
);
515 tt
= print_otag(h
, TAG_TR
, 0, NULL
);
517 PAIR_CLASS_INIT(&tag
, "head-ltitle");
518 print_otag(h
, TAG_TD
, 1, &tag
);
519 print_text(h
, title
);
522 PAIR_CLASS_INIT(&tag
, "head-vol");
523 print_otag(h
, TAG_TD
, 1, &tag
);
524 print_text(h
, volume
);
527 PAIR_CLASS_INIT(&tag
, "head-rtitle");
528 print_otag(h
, TAG_TD
, 1, &tag
);
529 print_text(h
, title
);
538 mdoc_sh_pre(MDOC_ARGS
)
544 PAIR_CLASS_INIT(&tag
, "section");
545 print_otag(h
, TAG_DIV
, 1, &tag
);
548 if (n
->sec
== SEC_AUTHORS
)
549 h
->flags
&= ~(HTML_SPLIT
|HTML_NOSPLIT
);
558 for (n
= n
->child
; n
&& MDOC_TEXT
== n
->type
; ) {
559 bufcat_id(h
, n
->string
);
560 if (NULL
!= (n
= n
->next
))
565 PAIR_ID_INIT(&tag
, h
->buf
);
566 print_otag(h
, TAG_H1
, 1, &tag
);
568 print_otag(h
, TAG_H1
, 0, NULL
);
574 mdoc_ss_pre(MDOC_ARGS
)
578 if (MDOC_BLOCK
== n
->type
) {
579 PAIR_CLASS_INIT(&tag
, "subsection");
580 print_otag(h
, TAG_DIV
, 1, &tag
);
582 } else if (MDOC_BODY
== n
->type
)
588 for (n
= n
->child
; n
&& MDOC_TEXT
== n
->type
; ) {
589 bufcat_id(h
, n
->string
);
590 if (NULL
!= (n
= n
->next
))
595 PAIR_ID_INIT(&tag
, h
->buf
);
596 print_otag(h
, TAG_H2
, 1, &tag
);
598 print_otag(h
, TAG_H2
, 0, NULL
);
604 mdoc_fl_pre(MDOC_ARGS
)
608 PAIR_CLASS_INIT(&tag
, "flag");
609 print_otag(h
, TAG_B
, 1, &tag
);
611 /* `Cm' has no leading hyphen. */
613 if (MDOC_Cm
== n
->tok
)
616 print_text(h
, "\\-");
618 if ( ! (n
->nchild
== 0 &&
620 n
->next
->type
== MDOC_TEXT
||
621 n
->next
->flags
& MDOC_LINE
)))
622 h
->flags
|= HTML_NOSPACE
;
628 mdoc_nd_pre(MDOC_ARGS
)
632 if (MDOC_BODY
!= n
->type
)
635 /* XXX: this tag in theory can contain block elements. */
637 print_text(h
, "\\(em");
638 PAIR_CLASS_INIT(&tag
, "desc");
639 print_otag(h
, TAG_SPAN
, 1, &tag
);
644 mdoc_nm_pre(MDOC_ARGS
)
653 PAIR_CLASS_INIT(&tag
, "name");
654 print_otag(h
, TAG_B
, 1, &tag
);
655 if (NULL
== n
->child
&& meta
->name
)
656 print_text(h
, meta
->name
);
659 print_otag(h
, TAG_TD
, 0, NULL
);
660 if (NULL
== n
->child
&& meta
->name
)
661 print_text(h
, meta
->name
);
664 print_otag(h
, TAG_TD
, 0, NULL
);
671 PAIR_CLASS_INIT(&tag
, "synopsis");
672 print_otag(h
, TAG_TABLE
, 1, &tag
);
674 for (len
= 0, n
= n
->child
; n
; n
= n
->next
)
675 if (MDOC_TEXT
== n
->type
)
676 len
+= html_strlen(n
->string
);
678 if (0 == len
&& meta
->name
)
679 len
= html_strlen(meta
->name
);
681 SCALE_HS_INIT(&su
, len
);
683 bufcat_su(h
, "width", &su
);
684 PAIR_STYLE_INIT(&tag
, h
);
685 print_otag(h
, TAG_COL
, 1, &tag
);
686 print_otag(h
, TAG_COL
, 0, NULL
);
687 print_otag(h
, TAG_TBODY
, 0, NULL
);
688 print_otag(h
, TAG_TR
, 0, NULL
);
693 mdoc_xr_pre(MDOC_ARGS
)
695 struct htmlpair tag
[2];
697 if (NULL
== n
->child
)
700 PAIR_CLASS_INIT(&tag
[0], "link-man");
703 buffmt_man(h
, n
->child
->string
,
705 n
->child
->next
->string
: NULL
);
706 PAIR_HREF_INIT(&tag
[1], h
->buf
);
707 print_otag(h
, TAG_A
, 2, tag
);
709 print_otag(h
, TAG_A
, 1, tag
);
712 print_text(h
, n
->string
);
714 if (NULL
== (n
= n
->next
))
717 h
->flags
|= HTML_NOSPACE
;
719 h
->flags
|= HTML_NOSPACE
;
720 print_text(h
, n
->string
);
721 h
->flags
|= HTML_NOSPACE
;
727 mdoc_ns_pre(MDOC_ARGS
)
730 if ( ! (MDOC_LINE
& n
->flags
))
731 h
->flags
|= HTML_NOSPACE
;
736 mdoc_ar_pre(MDOC_ARGS
)
740 PAIR_CLASS_INIT(&tag
, "arg");
741 print_otag(h
, TAG_I
, 1, &tag
);
746 mdoc_xx_pre(MDOC_ARGS
)
775 PAIR_CLASS_INIT(&tag
, "unix");
776 print_otag(h
, TAG_SPAN
, 1, &tag
);
781 h
->flags
|= HTML_KEEP
;
782 print_text(h
, n
->child
->string
);
789 mdoc_bx_pre(MDOC_ARGS
)
793 PAIR_CLASS_INIT(&tag
, "unix");
794 print_otag(h
, TAG_SPAN
, 1, &tag
);
796 if (NULL
!= (n
= n
->child
)) {
797 print_text(h
, n
->string
);
798 h
->flags
|= HTML_NOSPACE
;
799 print_text(h
, "BSD");
801 print_text(h
, "BSD");
805 if (NULL
!= (n
= n
->next
)) {
806 h
->flags
|= HTML_NOSPACE
;
808 h
->flags
|= HTML_NOSPACE
;
809 print_text(h
, n
->string
);
816 mdoc_it_pre(MDOC_ARGS
)
820 struct htmlpair tag
[2];
821 const struct mdoc_node
*bl
;
824 while (bl
&& MDOC_Bl
!= bl
->tok
)
829 type
= bl
->norm
->Bl
.type
;
832 PAIR_CLASS_INIT(&tag
[0], lists
[type
]);
836 if (MDOC_HEAD
== n
->type
) {
857 SCALE_VS_INIT(&su
, ! bl
->norm
->Bl
.comp
);
858 bufcat_su(h
, "margin-top", &su
);
859 PAIR_STYLE_INIT(&tag
[1], h
);
860 print_otag(h
, TAG_DT
, 2, tag
);
861 if (LIST_diag
!= type
)
863 PAIR_CLASS_INIT(&tag
[0], "diag");
864 print_otag(h
, TAG_B
, 1, tag
);
871 } else if (MDOC_BODY
== n
->type
) {
882 SCALE_VS_INIT(&su
, ! bl
->norm
->Bl
.comp
);
883 bufcat_su(h
, "margin-top", &su
);
884 PAIR_STYLE_INIT(&tag
[1], h
);
885 print_otag(h
, TAG_LI
, 2, tag
);
896 if (NULL
== bl
->norm
->Bl
.width
) {
897 print_otag(h
, TAG_DD
, 1, tag
);
900 a2width(bl
->norm
->Bl
.width
, &su
);
901 bufcat_su(h
, "margin-left", &su
);
902 PAIR_STYLE_INIT(&tag
[1], h
);
903 print_otag(h
, TAG_DD
, 2, tag
);
906 SCALE_VS_INIT(&su
, ! bl
->norm
->Bl
.comp
);
907 bufcat_su(h
, "margin-top", &su
);
908 PAIR_STYLE_INIT(&tag
[1], h
);
909 print_otag(h
, TAG_TD
, 2, tag
);
917 print_otag(h
, TAG_TR
, 1, tag
);
928 mdoc_bl_pre(MDOC_ARGS
)
931 struct htmlpair tag
[3];
935 if (MDOC_BODY
== n
->type
) {
936 if (LIST_column
== n
->norm
->Bl
.type
)
937 print_otag(h
, TAG_TBODY
, 0, NULL
);
941 if (MDOC_HEAD
== n
->type
) {
942 if (LIST_column
!= n
->norm
->Bl
.type
)
946 * For each column, print out the <COL> tag with our
947 * suggested width. The last column gets min-width, as
948 * in terminal mode it auto-sizes to the width of the
949 * screen and we want to preserve that behaviour.
952 for (i
= 0; i
< (int)n
->norm
->Bl
.ncols
; i
++) {
954 a2width(n
->norm
->Bl
.cols
[i
], &su
);
955 if (i
< (int)n
->norm
->Bl
.ncols
- 1)
956 bufcat_su(h
, "width", &su
);
958 bufcat_su(h
, "min-width", &su
);
959 PAIR_STYLE_INIT(&tag
[0], h
);
960 print_otag(h
, TAG_COL
, 1, tag
);
966 SCALE_VS_INIT(&su
, 0);
968 bufcat_su(h
, "margin-top", &su
);
969 bufcat_su(h
, "margin-bottom", &su
);
970 PAIR_STYLE_INIT(&tag
[0], h
);
972 assert(lists
[n
->norm
->Bl
.type
]);
973 (void)strlcpy(buf
, "list ", BUFSIZ
);
974 (void)strlcat(buf
, lists
[n
->norm
->Bl
.type
], BUFSIZ
);
975 PAIR_INIT(&tag
[1], ATTR_CLASS
, buf
);
977 /* Set the block's left-hand margin. */
979 if (n
->norm
->Bl
.offs
) {
980 a2width(n
->norm
->Bl
.offs
, &su
);
981 bufcat_su(h
, "margin-left", &su
);
984 switch (n
->norm
->Bl
.type
) {
992 print_otag(h
, TAG_UL
, 2, tag
);
995 print_otag(h
, TAG_OL
, 2, tag
);
1006 print_otag(h
, TAG_DL
, 2, tag
);
1009 print_otag(h
, TAG_TABLE
, 2, tag
);
1020 mdoc_ex_pre(MDOC_ARGS
)
1023 struct htmlpair tag
;
1027 print_otag(h
, TAG_BR
, 0, NULL
);
1029 PAIR_CLASS_INIT(&tag
, "utility");
1031 print_text(h
, "The");
1034 for (n
= n
->child
; n
; n
= n
->next
) {
1035 assert(MDOC_TEXT
== n
->type
);
1037 t
= print_otag(h
, TAG_B
, 1, &tag
);
1038 print_text(h
, n
->string
);
1041 if (nchild
> 2 && n
->next
) {
1042 h
->flags
|= HTML_NOSPACE
;
1046 if (n
->next
&& NULL
== n
->next
->next
)
1047 print_text(h
, "and");
1051 print_text(h
, "utilities exit\\~0");
1053 print_text(h
, "utility exits\\~0");
1055 print_text(h
, "on success, and\\~>0 if an error occurs.");
1060 mdoc_em_pre(MDOC_ARGS
)
1062 struct htmlpair tag
;
1064 PAIR_CLASS_INIT(&tag
, "emph");
1065 print_otag(h
, TAG_SPAN
, 1, &tag
);
1070 mdoc_d1_pre(MDOC_ARGS
)
1072 struct htmlpair tag
[2];
1075 if (MDOC_BLOCK
!= n
->type
)
1078 SCALE_VS_INIT(&su
, 0);
1080 bufcat_su(h
, "margin-top", &su
);
1081 bufcat_su(h
, "margin-bottom", &su
);
1082 PAIR_STYLE_INIT(&tag
[0], h
);
1083 print_otag(h
, TAG_BLOCKQUOTE
, 1, tag
);
1085 /* BLOCKQUOTE needs a block body. */
1087 PAIR_CLASS_INIT(&tag
[0], "display");
1088 print_otag(h
, TAG_DIV
, 1, tag
);
1090 if (MDOC_Dl
== n
->tok
) {
1091 PAIR_CLASS_INIT(&tag
[0], "lit");
1092 print_otag(h
, TAG_CODE
, 1, tag
);
1099 mdoc_sx_pre(MDOC_ARGS
)
1101 struct htmlpair tag
[2];
1106 for (n
= n
->child
; n
; ) {
1107 bufcat_id(h
, n
->string
);
1108 if (NULL
!= (n
= n
->next
))
1112 PAIR_CLASS_INIT(&tag
[0], "link-sec");
1113 PAIR_HREF_INIT(&tag
[1], h
->buf
);
1115 print_otag(h
, TAG_I
, 1, tag
);
1116 print_otag(h
, TAG_A
, 2, tag
);
1121 mdoc_bd_pre(MDOC_ARGS
)
1123 struct htmlpair tag
[2];
1125 const struct mdoc_node
*nn
;
1128 if (MDOC_HEAD
== n
->type
)
1131 if (MDOC_BLOCK
== n
->type
) {
1132 comp
= n
->norm
->Bd
.comp
;
1133 for (nn
= n
; nn
&& ! comp
; nn
= nn
->parent
) {
1134 if (MDOC_BLOCK
!= nn
->type
)
1136 if (MDOC_Ss
== nn
->tok
|| MDOC_Sh
== nn
->tok
)
1146 /* Handle the -offset argument. */
1148 if (n
->norm
->Bd
.offs
== NULL
||
1149 ! strcmp(n
->norm
->Bd
.offs
, "left"))
1150 SCALE_HS_INIT(&su
, 0);
1151 else if ( ! strcmp(n
->norm
->Bd
.offs
, "indent"))
1152 SCALE_HS_INIT(&su
, INDENT
);
1153 else if ( ! strcmp(n
->norm
->Bd
.offs
, "indent-two"))
1154 SCALE_HS_INIT(&su
, INDENT
* 2);
1156 a2width(n
->norm
->Bd
.offs
, &su
);
1159 bufcat_su(h
, "margin-left", &su
);
1160 PAIR_STYLE_INIT(&tag
[0], h
);
1162 if (DISP_unfilled
!= n
->norm
->Bd
.type
&&
1163 DISP_literal
!= n
->norm
->Bd
.type
) {
1164 PAIR_CLASS_INIT(&tag
[1], "display");
1165 print_otag(h
, TAG_DIV
, 2, tag
);
1169 PAIR_CLASS_INIT(&tag
[1], "lit display");
1170 print_otag(h
, TAG_PRE
, 2, tag
);
1172 /* This can be recursive: save & set our literal state. */
1174 sv
= h
->flags
& HTML_LITERAL
;
1175 h
->flags
|= HTML_LITERAL
;
1177 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1178 print_mdoc_node(meta
, nn
, h
);
1180 * If the printed node flushes its own line, then we
1181 * needn't do it here as well. This is hacky, but the
1182 * notion of selective eoln whitespace is pretty dumb
1183 * anyway, so don't sweat it.
1205 if (h
->flags
& HTML_NONEWLINE
||
1206 (nn
->next
&& ! (nn
->next
->flags
& MDOC_LINE
)))
1209 print_text(h
, "\n");
1211 h
->flags
|= HTML_NOSPACE
;
1215 h
->flags
&= ~HTML_LITERAL
;
1221 mdoc_pa_pre(MDOC_ARGS
)
1223 struct htmlpair tag
;
1225 PAIR_CLASS_INIT(&tag
, "file");
1226 print_otag(h
, TAG_I
, 1, &tag
);
1231 mdoc_ad_pre(MDOC_ARGS
)
1233 struct htmlpair tag
;
1235 PAIR_CLASS_INIT(&tag
, "addr");
1236 print_otag(h
, TAG_I
, 1, &tag
);
1241 mdoc_an_pre(MDOC_ARGS
)
1243 struct htmlpair tag
;
1245 if (n
->norm
->An
.auth
== AUTH_split
) {
1246 h
->flags
&= ~HTML_NOSPLIT
;
1247 h
->flags
|= HTML_SPLIT
;
1250 if (n
->norm
->An
.auth
== AUTH_nosplit
) {
1251 h
->flags
&= ~HTML_SPLIT
;
1252 h
->flags
|= HTML_NOSPLIT
;
1256 if (n
->child
== NULL
)
1259 if (h
->flags
& HTML_SPLIT
)
1260 print_otag(h
, TAG_BR
, 0, NULL
);
1262 if (n
->sec
== SEC_AUTHORS
&& ! (h
->flags
& HTML_NOSPLIT
))
1263 h
->flags
|= HTML_SPLIT
;
1265 PAIR_CLASS_INIT(&tag
, "author");
1266 print_otag(h
, TAG_SPAN
, 1, &tag
);
1271 mdoc_cd_pre(MDOC_ARGS
)
1273 struct htmlpair tag
;
1276 PAIR_CLASS_INIT(&tag
, "config");
1277 print_otag(h
, TAG_B
, 1, &tag
);
1282 mdoc_dv_pre(MDOC_ARGS
)
1284 struct htmlpair tag
;
1286 PAIR_CLASS_INIT(&tag
, "define");
1287 print_otag(h
, TAG_SPAN
, 1, &tag
);
1292 mdoc_ev_pre(MDOC_ARGS
)
1294 struct htmlpair tag
;
1296 PAIR_CLASS_INIT(&tag
, "env");
1297 print_otag(h
, TAG_SPAN
, 1, &tag
);
1302 mdoc_er_pre(MDOC_ARGS
)
1304 struct htmlpair tag
;
1306 PAIR_CLASS_INIT(&tag
, "errno");
1307 print_otag(h
, TAG_SPAN
, 1, &tag
);
1312 mdoc_fa_pre(MDOC_ARGS
)
1314 const struct mdoc_node
*nn
;
1315 struct htmlpair tag
;
1318 PAIR_CLASS_INIT(&tag
, "farg");
1319 if (n
->parent
->tok
!= MDOC_Fo
) {
1320 print_otag(h
, TAG_I
, 1, &tag
);
1324 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1325 t
= print_otag(h
, TAG_I
, 1, &tag
);
1326 print_text(h
, nn
->string
);
1329 h
->flags
|= HTML_NOSPACE
;
1334 if (n
->child
&& n
->next
&& n
->next
->tok
== MDOC_Fa
) {
1335 h
->flags
|= HTML_NOSPACE
;
1343 mdoc_fd_pre(MDOC_ARGS
)
1345 struct htmlpair tag
[2];
1353 if (NULL
== (n
= n
->child
))
1356 assert(MDOC_TEXT
== n
->type
);
1358 if (strcmp(n
->string
, "#include")) {
1359 PAIR_CLASS_INIT(&tag
[0], "macro");
1360 print_otag(h
, TAG_B
, 1, tag
);
1364 PAIR_CLASS_INIT(&tag
[0], "includes");
1365 print_otag(h
, TAG_B
, 1, tag
);
1366 print_text(h
, n
->string
);
1368 if (NULL
!= (n
= n
->next
)) {
1369 assert(MDOC_TEXT
== n
->type
);
1372 * XXX This is broken and not easy to fix.
1373 * When using -Oincludes, truncation may occur.
1374 * Dynamic allocation wouldn't help because
1375 * passing long strings to buffmt_includes()
1376 * does not work either.
1379 strlcpy(buf
, '<' == *n
->string
|| '"' == *n
->string
?
1380 n
->string
+ 1 : n
->string
, BUFSIZ
);
1383 if (sz
&& ('>' == buf
[sz
- 1] || '"' == buf
[sz
- 1]))
1386 PAIR_CLASS_INIT(&tag
[0], "link-includes");
1389 if (h
->base_includes
) {
1390 buffmt_includes(h
, buf
);
1391 PAIR_HREF_INIT(&tag
[i
], h
->buf
);
1395 t
= print_otag(h
, TAG_A
, i
, tag
);
1396 print_text(h
, n
->string
);
1402 for ( ; n
; n
= n
->next
) {
1403 assert(MDOC_TEXT
== n
->type
);
1404 print_text(h
, n
->string
);
1411 mdoc_vt_pre(MDOC_ARGS
)
1413 struct htmlpair tag
;
1415 if (MDOC_BLOCK
== n
->type
) {
1418 } else if (MDOC_ELEM
== n
->type
) {
1420 } else if (MDOC_HEAD
== n
->type
)
1423 PAIR_CLASS_INIT(&tag
, "type");
1424 print_otag(h
, TAG_SPAN
, 1, &tag
);
1429 mdoc_ft_pre(MDOC_ARGS
)
1431 struct htmlpair tag
;
1434 PAIR_CLASS_INIT(&tag
, "ftype");
1435 print_otag(h
, TAG_I
, 1, &tag
);
1440 mdoc_fn_pre(MDOC_ARGS
)
1443 struct htmlpair tag
[2];
1445 const char *sp
, *ep
;
1448 pretty
= MDOC_SYNPRETTY
& n
->flags
;
1451 /* Split apart into type and name. */
1452 assert(n
->child
->string
);
1453 sp
= n
->child
->string
;
1455 ep
= strchr(sp
, ' ');
1457 PAIR_CLASS_INIT(&tag
[0], "ftype");
1458 t
= print_otag(h
, TAG_I
, 1, tag
);
1461 sz
= MIN((int)(ep
- sp
), BUFSIZ
- 1);
1462 (void)memcpy(nbuf
, sp
, (size_t)sz
);
1464 print_text(h
, nbuf
);
1466 ep
= strchr(sp
, ' ');
1471 PAIR_CLASS_INIT(&tag
[0], "fname");
1474 * FIXME: only refer to IDs that we know exist.
1478 if (MDOC_SYNPRETTY
& n
->flags
) {
1480 html_idcat(nbuf
, sp
, BUFSIZ
);
1481 PAIR_ID_INIT(&tag
[1], nbuf
);
1483 strlcpy(nbuf
, "#", BUFSIZ
);
1484 html_idcat(nbuf
, sp
, BUFSIZ
);
1485 PAIR_HREF_INIT(&tag
[1], nbuf
);
1489 t
= print_otag(h
, TAG_B
, 1, tag
);
1496 h
->flags
|= HTML_NOSPACE
;
1498 h
->flags
|= HTML_NOSPACE
;
1500 PAIR_CLASS_INIT(&tag
[0], "farg");
1502 bufcat_style(h
, "white-space", "nowrap");
1503 PAIR_STYLE_INIT(&tag
[1], h
);
1505 for (n
= n
->child
->next
; n
; n
= n
->next
) {
1507 if (MDOC_SYNPRETTY
& n
->flags
)
1509 t
= print_otag(h
, TAG_I
, i
, tag
);
1510 print_text(h
, n
->string
);
1513 h
->flags
|= HTML_NOSPACE
;
1518 h
->flags
|= HTML_NOSPACE
;
1522 h
->flags
|= HTML_NOSPACE
;
1530 mdoc_sm_pre(MDOC_ARGS
)
1533 if (NULL
== n
->child
)
1534 h
->flags
^= HTML_NONOSPACE
;
1535 else if (0 == strcmp("on", n
->child
->string
))
1536 h
->flags
&= ~HTML_NONOSPACE
;
1538 h
->flags
|= HTML_NONOSPACE
;
1540 if ( ! (HTML_NONOSPACE
& h
->flags
))
1541 h
->flags
&= ~HTML_NOSPACE
;
1547 mdoc_skip_pre(MDOC_ARGS
)
1554 mdoc_pp_pre(MDOC_ARGS
)
1562 mdoc_sp_pre(MDOC_ARGS
)
1565 struct htmlpair tag
;
1567 SCALE_VS_INIT(&su
, 1);
1569 if (MDOC_sp
== n
->tok
) {
1570 if (NULL
!= (n
= n
->child
)) {
1571 if ( ! a2roffsu(n
->string
, &su
, SCALE_VS
))
1573 else if (su
.scale
< 0.0)
1580 bufcat_su(h
, "height", &su
);
1581 PAIR_STYLE_INIT(&tag
, h
);
1582 print_otag(h
, TAG_DIV
, 1, &tag
);
1584 /* So the div isn't empty: */
1585 print_text(h
, "\\~");
1592 mdoc_lk_pre(MDOC_ARGS
)
1594 struct htmlpair tag
[2];
1596 if (NULL
== (n
= n
->child
))
1599 assert(MDOC_TEXT
== n
->type
);
1601 PAIR_CLASS_INIT(&tag
[0], "link-ext");
1602 PAIR_HREF_INIT(&tag
[1], n
->string
);
1604 print_otag(h
, TAG_A
, 2, tag
);
1606 if (NULL
== n
->next
)
1607 print_text(h
, n
->string
);
1609 for (n
= n
->next
; n
; n
= n
->next
)
1610 print_text(h
, n
->string
);
1616 mdoc_mt_pre(MDOC_ARGS
)
1618 struct htmlpair tag
[2];
1621 PAIR_CLASS_INIT(&tag
[0], "link-mail");
1623 for (n
= n
->child
; n
; n
= n
->next
) {
1624 assert(MDOC_TEXT
== n
->type
);
1627 bufcat(h
, "mailto:");
1628 bufcat(h
, n
->string
);
1630 PAIR_HREF_INIT(&tag
[1], h
->buf
);
1631 t
= print_otag(h
, TAG_A
, 2, tag
);
1632 print_text(h
, n
->string
);
1640 mdoc_fo_pre(MDOC_ARGS
)
1642 struct htmlpair tag
;
1645 if (MDOC_BODY
== n
->type
) {
1646 h
->flags
|= HTML_NOSPACE
;
1648 h
->flags
|= HTML_NOSPACE
;
1650 } else if (MDOC_BLOCK
== n
->type
) {
1655 /* XXX: we drop non-initial arguments as per groff. */
1658 assert(n
->child
->string
);
1660 PAIR_CLASS_INIT(&tag
, "fname");
1661 t
= print_otag(h
, TAG_B
, 1, &tag
);
1662 print_text(h
, n
->child
->string
);
1668 mdoc_fo_post(MDOC_ARGS
)
1671 if (MDOC_BODY
!= n
->type
)
1673 h
->flags
|= HTML_NOSPACE
;
1675 h
->flags
|= HTML_NOSPACE
;
1680 mdoc_in_pre(MDOC_ARGS
)
1683 struct htmlpair tag
[2];
1688 PAIR_CLASS_INIT(&tag
[0], "includes");
1689 print_otag(h
, TAG_B
, 1, tag
);
1692 * The first argument of the `In' gets special treatment as
1693 * being a linked value. Subsequent values are printed
1694 * afterward. groff does similarly. This also handles the case
1698 if (MDOC_SYNPRETTY
& n
->flags
&& MDOC_LINE
& n
->flags
)
1699 print_text(h
, "#include");
1702 h
->flags
|= HTML_NOSPACE
;
1704 if (NULL
!= (n
= n
->child
)) {
1705 assert(MDOC_TEXT
== n
->type
);
1707 PAIR_CLASS_INIT(&tag
[0], "link-includes");
1710 if (h
->base_includes
) {
1711 buffmt_includes(h
, n
->string
);
1712 PAIR_HREF_INIT(&tag
[i
], h
->buf
);
1716 t
= print_otag(h
, TAG_A
, i
, tag
);
1717 print_text(h
, n
->string
);
1723 h
->flags
|= HTML_NOSPACE
;
1726 for ( ; n
; n
= n
->next
) {
1727 assert(MDOC_TEXT
== n
->type
);
1728 print_text(h
, n
->string
);
1735 mdoc_ic_pre(MDOC_ARGS
)
1737 struct htmlpair tag
;
1739 PAIR_CLASS_INIT(&tag
, "cmd");
1740 print_otag(h
, TAG_B
, 1, &tag
);
1745 mdoc_rv_pre(MDOC_ARGS
)
1747 struct htmlpair tag
;
1752 print_otag(h
, TAG_BR
, 0, NULL
);
1754 PAIR_CLASS_INIT(&tag
, "fname");
1758 print_text(h
, "The");
1760 for (n
= n
->child
; n
; n
= n
->next
) {
1761 t
= print_otag(h
, TAG_B
, 1, &tag
);
1762 print_text(h
, n
->string
);
1765 h
->flags
|= HTML_NOSPACE
;
1766 print_text(h
, "()");
1768 if (n
->next
== NULL
)
1772 h
->flags
|= HTML_NOSPACE
;
1775 if (n
->next
->next
== NULL
)
1776 print_text(h
, "and");
1780 print_text(h
, "functions return");
1782 print_text(h
, "function returns");
1784 print_text(h
, "the value\\~0 if successful;");
1786 print_text(h
, "Upon successful completion,"
1787 " the value\\~0 is returned;");
1789 print_text(h
, "otherwise the value\\~\\-1 is returned"
1790 " and the global variable");
1792 PAIR_CLASS_INIT(&tag
, "var");
1793 t
= print_otag(h
, TAG_B
, 1, &tag
);
1794 print_text(h
, "errno");
1796 print_text(h
, "is set to indicate the error.");
1801 mdoc_va_pre(MDOC_ARGS
)
1803 struct htmlpair tag
;
1805 PAIR_CLASS_INIT(&tag
, "var");
1806 print_otag(h
, TAG_B
, 1, &tag
);
1811 mdoc_ap_pre(MDOC_ARGS
)
1814 h
->flags
|= HTML_NOSPACE
;
1815 print_text(h
, "\\(aq");
1816 h
->flags
|= HTML_NOSPACE
;
1821 mdoc_bf_pre(MDOC_ARGS
)
1823 struct htmlpair tag
[2];
1826 if (MDOC_HEAD
== n
->type
)
1828 else if (MDOC_BODY
!= n
->type
)
1831 if (FONT_Em
== n
->norm
->Bf
.font
)
1832 PAIR_CLASS_INIT(&tag
[0], "emph");
1833 else if (FONT_Sy
== n
->norm
->Bf
.font
)
1834 PAIR_CLASS_INIT(&tag
[0], "symb");
1835 else if (FONT_Li
== n
->norm
->Bf
.font
)
1836 PAIR_CLASS_INIT(&tag
[0], "lit");
1838 PAIR_CLASS_INIT(&tag
[0], "none");
1841 * We want this to be inline-formatted, but needs to be div to
1842 * accept block children.
1845 bufcat_style(h
, "display", "inline");
1846 SCALE_HS_INIT(&su
, 1);
1847 /* Needs a left-margin for spacing. */
1848 bufcat_su(h
, "margin-left", &su
);
1849 PAIR_STYLE_INIT(&tag
[1], h
);
1850 print_otag(h
, TAG_DIV
, 2, tag
);
1855 mdoc_ms_pre(MDOC_ARGS
)
1857 struct htmlpair tag
;
1859 PAIR_CLASS_INIT(&tag
, "symb");
1860 print_otag(h
, TAG_SPAN
, 1, &tag
);
1865 mdoc_igndelim_pre(MDOC_ARGS
)
1868 h
->flags
|= HTML_IGNDELIM
;
1873 mdoc_pf_post(MDOC_ARGS
)
1876 if ( ! (n
->next
== NULL
|| n
->next
->flags
& MDOC_LINE
))
1877 h
->flags
|= HTML_NOSPACE
;
1881 mdoc_rs_pre(MDOC_ARGS
)
1883 struct htmlpair tag
;
1885 if (MDOC_BLOCK
!= n
->type
)
1888 if (n
->prev
&& SEC_SEE_ALSO
== n
->sec
)
1891 PAIR_CLASS_INIT(&tag
, "ref");
1892 print_otag(h
, TAG_SPAN
, 1, &tag
);
1897 mdoc_no_pre(MDOC_ARGS
)
1899 struct htmlpair tag
;
1901 PAIR_CLASS_INIT(&tag
, "none");
1902 print_otag(h
, TAG_CODE
, 1, &tag
);
1907 mdoc_li_pre(MDOC_ARGS
)
1909 struct htmlpair tag
;
1911 PAIR_CLASS_INIT(&tag
, "lit");
1912 print_otag(h
, TAG_CODE
, 1, &tag
);
1917 mdoc_sy_pre(MDOC_ARGS
)
1919 struct htmlpair tag
;
1921 PAIR_CLASS_INIT(&tag
, "symb");
1922 print_otag(h
, TAG_SPAN
, 1, &tag
);
1927 mdoc_bt_pre(MDOC_ARGS
)
1930 print_text(h
, "is currently in beta test.");
1935 mdoc_ud_pre(MDOC_ARGS
)
1938 print_text(h
, "currently under development.");
1943 mdoc_lb_pre(MDOC_ARGS
)
1945 struct htmlpair tag
;
1947 if (SEC_LIBRARY
== n
->sec
&& MDOC_LINE
& n
->flags
&& n
->prev
)
1948 print_otag(h
, TAG_BR
, 0, NULL
);
1950 PAIR_CLASS_INIT(&tag
, "lib");
1951 print_otag(h
, TAG_SPAN
, 1, &tag
);
1956 mdoc__x_pre(MDOC_ARGS
)
1958 struct htmlpair tag
[2];
1965 PAIR_CLASS_INIT(&tag
[0], "ref-auth");
1966 if (n
->prev
&& MDOC__A
== n
->prev
->tok
)
1967 if (NULL
== n
->next
|| MDOC__A
!= n
->next
->tok
)
1968 print_text(h
, "and");
1971 PAIR_CLASS_INIT(&tag
[0], "ref-book");
1975 PAIR_CLASS_INIT(&tag
[0], "ref-city");
1978 PAIR_CLASS_INIT(&tag
[0], "ref-date");
1981 PAIR_CLASS_INIT(&tag
[0], "ref-issue");
1985 PAIR_CLASS_INIT(&tag
[0], "ref-jrnl");
1989 PAIR_CLASS_INIT(&tag
[0], "ref-num");
1992 PAIR_CLASS_INIT(&tag
[0], "ref-opt");
1995 PAIR_CLASS_INIT(&tag
[0], "ref-page");
1998 PAIR_CLASS_INIT(&tag
[0], "ref-corp");
2001 PAIR_CLASS_INIT(&tag
[0], "ref-rep");
2004 PAIR_CLASS_INIT(&tag
[0], "ref-title");
2007 PAIR_CLASS_INIT(&tag
[0], "link-ref");
2010 PAIR_CLASS_INIT(&tag
[0], "ref-vol");
2017 if (MDOC__U
!= n
->tok
) {
2018 print_otag(h
, t
, 1, tag
);
2022 PAIR_HREF_INIT(&tag
[1], n
->child
->string
);
2023 print_otag(h
, TAG_A
, 2, tag
);
2029 mdoc__x_post(MDOC_ARGS
)
2032 if (MDOC__A
== n
->tok
&& n
->next
&& MDOC__A
== n
->next
->tok
)
2033 if (NULL
== n
->next
->next
|| MDOC__A
!= n
->next
->next
->tok
)
2034 if (NULL
== n
->prev
|| MDOC__A
!= n
->prev
->tok
)
2039 if (NULL
== n
->parent
|| MDOC_Rs
!= n
->parent
->tok
)
2042 h
->flags
|= HTML_NOSPACE
;
2043 print_text(h
, n
->next
? "," : ".");
2047 mdoc_bk_pre(MDOC_ARGS
)
2056 if (n
->parent
->args
|| 0 == n
->prev
->nchild
)
2057 h
->flags
|= HTML_PREKEEP
;
2068 mdoc_bk_post(MDOC_ARGS
)
2071 if (MDOC_BODY
== n
->type
)
2072 h
->flags
&= ~(HTML_KEEP
| HTML_PREKEEP
);
2076 mdoc_quote_pre(MDOC_ARGS
)
2078 struct htmlpair tag
;
2080 if (MDOC_BODY
!= n
->type
)
2087 print_text(h
, n
->nchild
== 1 &&
2088 n
->child
->tok
== MDOC_Mt
? "<" : "\\(la");
2093 print_text(h
, "\\(lC");
2098 print_text(h
, "\\(lB");
2103 print_text(h
, "\\(lB");
2104 h
->flags
|= HTML_NOSPACE
;
2105 PAIR_CLASS_INIT(&tag
, "opt");
2106 print_otag(h
, TAG_SPAN
, 1, &tag
);
2109 if (NULL
== n
->norm
->Es
||
2110 NULL
== n
->norm
->Es
->child
)
2112 print_text(h
, n
->norm
->Es
->child
->string
);
2121 print_text(h
, "\\(lq");
2129 print_text(h
, "\\(oq");
2130 h
->flags
|= HTML_NOSPACE
;
2131 PAIR_CLASS_INIT(&tag
, "lit");
2132 print_otag(h
, TAG_CODE
, 1, &tag
);
2137 print_text(h
, "\\(oq");
2144 h
->flags
|= HTML_NOSPACE
;
2149 mdoc_quote_post(MDOC_ARGS
)
2152 if (n
->type
!= MDOC_BODY
&& n
->type
!= MDOC_ELEM
)
2155 h
->flags
|= HTML_NOSPACE
;
2161 print_text(h
, n
->nchild
== 1 &&
2162 n
->child
->tok
== MDOC_Mt
? ">" : "\\(ra");
2167 print_text(h
, "\\(rC");
2176 print_text(h
, "\\(rB");
2179 if (n
->norm
->Es
== NULL
||
2180 n
->norm
->Es
->child
== NULL
||
2181 n
->norm
->Es
->child
->next
== NULL
)
2182 h
->flags
&= ~HTML_NOSPACE
;
2184 print_text(h
, n
->norm
->Es
->child
->next
->string
);
2193 print_text(h
, "\\(rq");
2205 print_text(h
, "\\(cq");
2214 mdoc_eo_pre(MDOC_ARGS
)
2217 if (n
->type
!= MDOC_BODY
)
2220 if (n
->end
== ENDBODY_NOT
&&
2221 n
->parent
->head
->child
== NULL
&&
2223 n
->child
->end
!= ENDBODY_NOT
)
2224 print_text(h
, "\\&");
2225 else if (n
->end
!= ENDBODY_NOT
? n
->child
!= NULL
:
2226 n
->parent
->head
->child
!= NULL
&&
2227 (n
->parent
->body
->child
!= NULL
||
2228 n
->parent
->tail
->child
!= NULL
))
2229 h
->flags
|= HTML_NOSPACE
;
2234 mdoc_eo_post(MDOC_ARGS
)
2238 if (n
->type
!= MDOC_BODY
)
2241 if (n
->end
!= ENDBODY_NOT
) {
2242 h
->flags
&= ~HTML_NOSPACE
;
2246 body
= n
->child
!= NULL
|| n
->parent
->head
->child
!= NULL
;
2247 tail
= n
->parent
->tail
!= NULL
&& n
->parent
->tail
->child
!= NULL
;
2250 h
->flags
|= HTML_NOSPACE
;
2252 h
->flags
&= ~HTML_NOSPACE
;