]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_html.c
1 /* $Id: mdoc_html.c,v 1.220 2015/01/30 22:04:44 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 int mdoc_er_pre(MDOC_ARGS
);
85 static int mdoc_ev_pre(MDOC_ARGS
);
86 static int mdoc_ex_pre(MDOC_ARGS
);
87 static void mdoc_fo_post(MDOC_ARGS
);
88 static int mdoc_fo_pre(MDOC_ARGS
);
89 static int mdoc_ic_pre(MDOC_ARGS
);
90 static int mdoc_igndelim_pre(MDOC_ARGS
);
91 static int mdoc_in_pre(MDOC_ARGS
);
92 static int mdoc_it_pre(MDOC_ARGS
);
93 static int mdoc_lb_pre(MDOC_ARGS
);
94 static int mdoc_li_pre(MDOC_ARGS
);
95 static int mdoc_lk_pre(MDOC_ARGS
);
96 static int mdoc_mt_pre(MDOC_ARGS
);
97 static int mdoc_ms_pre(MDOC_ARGS
);
98 static int mdoc_nd_pre(MDOC_ARGS
);
99 static int mdoc_nm_pre(MDOC_ARGS
);
100 static int mdoc_no_pre(MDOC_ARGS
);
101 static int mdoc_ns_pre(MDOC_ARGS
);
102 static int mdoc_pa_pre(MDOC_ARGS
);
103 static void mdoc_pf_post(MDOC_ARGS
);
104 static int mdoc_pp_pre(MDOC_ARGS
);
105 static void mdoc_quote_post(MDOC_ARGS
);
106 static int mdoc_quote_pre(MDOC_ARGS
);
107 static int mdoc_rs_pre(MDOC_ARGS
);
108 static int mdoc_rv_pre(MDOC_ARGS
);
109 static int mdoc_sh_pre(MDOC_ARGS
);
110 static int mdoc_skip_pre(MDOC_ARGS
);
111 static int mdoc_sm_pre(MDOC_ARGS
);
112 static int mdoc_sp_pre(MDOC_ARGS
);
113 static int mdoc_ss_pre(MDOC_ARGS
);
114 static int mdoc_sx_pre(MDOC_ARGS
);
115 static int mdoc_sy_pre(MDOC_ARGS
);
116 static int mdoc_ud_pre(MDOC_ARGS
);
117 static int mdoc_va_pre(MDOC_ARGS
);
118 static int mdoc_vt_pre(MDOC_ARGS
);
119 static int mdoc_xr_pre(MDOC_ARGS
);
120 static int mdoc_xx_pre(MDOC_ARGS
);
122 static const struct htmlmdoc mdocs
[MDOC_MAX
] = {
123 {mdoc_ap_pre
, NULL
}, /* Ap */
124 {NULL
, NULL
}, /* Dd */
125 {NULL
, NULL
}, /* Dt */
126 {NULL
, NULL
}, /* Os */
127 {mdoc_sh_pre
, NULL
}, /* Sh */
128 {mdoc_ss_pre
, NULL
}, /* Ss */
129 {mdoc_pp_pre
, NULL
}, /* Pp */
130 {mdoc_d1_pre
, NULL
}, /* D1 */
131 {mdoc_d1_pre
, NULL
}, /* Dl */
132 {mdoc_bd_pre
, NULL
}, /* Bd */
133 {NULL
, NULL
}, /* Ed */
134 {mdoc_bl_pre
, NULL
}, /* Bl */
135 {NULL
, NULL
}, /* El */
136 {mdoc_it_pre
, NULL
}, /* It */
137 {mdoc_ad_pre
, NULL
}, /* Ad */
138 {mdoc_an_pre
, NULL
}, /* An */
139 {mdoc_ar_pre
, NULL
}, /* Ar */
140 {mdoc_cd_pre
, NULL
}, /* Cd */
141 {mdoc_fl_pre
, NULL
}, /* Cm */
142 {mdoc_dv_pre
, NULL
}, /* Dv */
143 {mdoc_er_pre
, NULL
}, /* Er */
144 {mdoc_ev_pre
, NULL
}, /* Ev */
145 {mdoc_ex_pre
, NULL
}, /* Ex */
146 {mdoc_fa_pre
, NULL
}, /* Fa */
147 {mdoc_fd_pre
, NULL
}, /* Fd */
148 {mdoc_fl_pre
, NULL
}, /* Fl */
149 {mdoc_fn_pre
, NULL
}, /* Fn */
150 {mdoc_ft_pre
, NULL
}, /* Ft */
151 {mdoc_ic_pre
, NULL
}, /* Ic */
152 {mdoc_in_pre
, NULL
}, /* In */
153 {mdoc_li_pre
, NULL
}, /* Li */
154 {mdoc_nd_pre
, NULL
}, /* Nd */
155 {mdoc_nm_pre
, NULL
}, /* Nm */
156 {mdoc_quote_pre
, mdoc_quote_post
}, /* Op */
157 {mdoc_ft_pre
, NULL
}, /* Ot */
158 {mdoc_pa_pre
, NULL
}, /* Pa */
159 {mdoc_rv_pre
, NULL
}, /* Rv */
160 {NULL
, NULL
}, /* St */
161 {mdoc_va_pre
, NULL
}, /* Va */
162 {mdoc_vt_pre
, NULL
}, /* Vt */
163 {mdoc_xr_pre
, NULL
}, /* Xr */
164 {mdoc__x_pre
, mdoc__x_post
}, /* %A */
165 {mdoc__x_pre
, mdoc__x_post
}, /* %B */
166 {mdoc__x_pre
, mdoc__x_post
}, /* %D */
167 {mdoc__x_pre
, mdoc__x_post
}, /* %I */
168 {mdoc__x_pre
, mdoc__x_post
}, /* %J */
169 {mdoc__x_pre
, mdoc__x_post
}, /* %N */
170 {mdoc__x_pre
, mdoc__x_post
}, /* %O */
171 {mdoc__x_pre
, mdoc__x_post
}, /* %P */
172 {mdoc__x_pre
, mdoc__x_post
}, /* %R */
173 {mdoc__x_pre
, mdoc__x_post
}, /* %T */
174 {mdoc__x_pre
, mdoc__x_post
}, /* %V */
175 {NULL
, NULL
}, /* Ac */
176 {mdoc_quote_pre
, mdoc_quote_post
}, /* Ao */
177 {mdoc_quote_pre
, mdoc_quote_post
}, /* Aq */
178 {NULL
, NULL
}, /* At */
179 {NULL
, NULL
}, /* Bc */
180 {mdoc_bf_pre
, NULL
}, /* Bf */
181 {mdoc_quote_pre
, mdoc_quote_post
}, /* Bo */
182 {mdoc_quote_pre
, mdoc_quote_post
}, /* Bq */
183 {mdoc_xx_pre
, NULL
}, /* Bsx */
184 {mdoc_bx_pre
, NULL
}, /* Bx */
185 {mdoc_skip_pre
, NULL
}, /* Db */
186 {NULL
, NULL
}, /* Dc */
187 {mdoc_quote_pre
, mdoc_quote_post
}, /* Do */
188 {mdoc_quote_pre
, mdoc_quote_post
}, /* Dq */
189 {NULL
, NULL
}, /* Ec */ /* FIXME: no space */
190 {NULL
, NULL
}, /* Ef */
191 {mdoc_em_pre
, NULL
}, /* Em */
192 {mdoc_quote_pre
, mdoc_quote_post
}, /* Eo */
193 {mdoc_xx_pre
, NULL
}, /* Fx */
194 {mdoc_ms_pre
, NULL
}, /* Ms */
195 {mdoc_no_pre
, NULL
}, /* No */
196 {mdoc_ns_pre
, NULL
}, /* Ns */
197 {mdoc_xx_pre
, NULL
}, /* Nx */
198 {mdoc_xx_pre
, NULL
}, /* Ox */
199 {NULL
, NULL
}, /* Pc */
200 {mdoc_igndelim_pre
, mdoc_pf_post
}, /* Pf */
201 {mdoc_quote_pre
, mdoc_quote_post
}, /* Po */
202 {mdoc_quote_pre
, mdoc_quote_post
}, /* Pq */
203 {NULL
, NULL
}, /* Qc */
204 {mdoc_quote_pre
, mdoc_quote_post
}, /* Ql */
205 {mdoc_quote_pre
, mdoc_quote_post
}, /* Qo */
206 {mdoc_quote_pre
, mdoc_quote_post
}, /* Qq */
207 {NULL
, NULL
}, /* Re */
208 {mdoc_rs_pre
, NULL
}, /* Rs */
209 {NULL
, NULL
}, /* Sc */
210 {mdoc_quote_pre
, mdoc_quote_post
}, /* So */
211 {mdoc_quote_pre
, mdoc_quote_post
}, /* Sq */
212 {mdoc_sm_pre
, NULL
}, /* Sm */
213 {mdoc_sx_pre
, NULL
}, /* Sx */
214 {mdoc_sy_pre
, NULL
}, /* Sy */
215 {NULL
, NULL
}, /* Tn */
216 {mdoc_xx_pre
, NULL
}, /* Ux */
217 {NULL
, NULL
}, /* Xc */
218 {NULL
, NULL
}, /* Xo */
219 {mdoc_fo_pre
, mdoc_fo_post
}, /* Fo */
220 {NULL
, NULL
}, /* Fc */
221 {mdoc_quote_pre
, mdoc_quote_post
}, /* Oo */
222 {NULL
, NULL
}, /* Oc */
223 {mdoc_bk_pre
, mdoc_bk_post
}, /* Bk */
224 {NULL
, NULL
}, /* Ek */
225 {mdoc_bt_pre
, NULL
}, /* Bt */
226 {NULL
, NULL
}, /* Hf */
227 {mdoc_em_pre
, NULL
}, /* Fr */
228 {mdoc_ud_pre
, NULL
}, /* Ud */
229 {mdoc_lb_pre
, NULL
}, /* Lb */
230 {mdoc_pp_pre
, NULL
}, /* Lp */
231 {mdoc_lk_pre
, NULL
}, /* Lk */
232 {mdoc_mt_pre
, NULL
}, /* Mt */
233 {mdoc_quote_pre
, mdoc_quote_post
}, /* Brq */
234 {mdoc_quote_pre
, mdoc_quote_post
}, /* Bro */
235 {NULL
, NULL
}, /* Brc */
236 {mdoc__x_pre
, mdoc__x_post
}, /* %C */
237 {mdoc_skip_pre
, NULL
}, /* Es */
238 {mdoc_quote_pre
, mdoc_quote_post
}, /* En */
239 {mdoc_xx_pre
, NULL
}, /* Dx */
240 {mdoc__x_pre
, mdoc__x_post
}, /* %Q */
241 {mdoc_sp_pre
, NULL
}, /* br */
242 {mdoc_sp_pre
, NULL
}, /* sp */
243 {mdoc__x_pre
, mdoc__x_post
}, /* %U */
244 {NULL
, NULL
}, /* Ta */
245 {mdoc_skip_pre
, NULL
}, /* ll */
248 static const char * const lists
[LIST_MAX
] = {
265 html_mdoc(void *arg
, const struct mdoc
*mdoc
)
268 print_mdoc(mdoc_meta(mdoc
), mdoc_node(mdoc
),
274 * Calculate the scaling unit passed in a `-width' argument. This uses
275 * either a native scaling unit (e.g., 1i, 2m) or the string length of
279 a2width(const char *p
, struct roffsu
*su
)
282 if (a2roffsu(p
, su
, SCALE_MAX
) < 2) {
284 su
->scale
= html_strlen(p
);
285 } else if (su
->scale
< 0.0)
290 * See the same function in mdoc_term.c for documentation.
293 synopsis_pre(struct html
*h
, const struct mdoc_node
*n
)
296 if (NULL
== n
->prev
|| ! (MDOC_SYNPRETTY
& n
->flags
))
299 if (n
->prev
->tok
== n
->tok
&&
303 print_otag(h
, TAG_BR
, 0, NULL
);
307 switch (n
->prev
->tok
) {
320 if (MDOC_Fn
!= n
->tok
&& MDOC_Fo
!= n
->tok
) {
326 print_otag(h
, TAG_BR
, 0, NULL
);
332 print_mdoc(MDOC_ARGS
)
337 PAIR_CLASS_INIT(&tag
, "mandoc");
339 if ( ! (HTML_FRAGMENT
& h
->oflags
)) {
341 t
= print_otag(h
, TAG_HTML
, 0, NULL
);
342 tt
= print_otag(h
, TAG_HEAD
, 0, NULL
);
343 print_mdoc_head(meta
, n
, h
);
345 print_otag(h
, TAG_BODY
, 0, NULL
);
346 print_otag(h
, TAG_DIV
, 1, &tag
);
348 t
= print_otag(h
, TAG_DIV
, 1, &tag
);
350 print_mdoc_nodelist(meta
, n
, h
);
355 print_mdoc_head(MDOC_ARGS
)
360 bufcat(h
, meta
->title
);
362 bufcat_fmt(h
, "(%s)", meta
->msec
);
364 bufcat_fmt(h
, " (%s)", meta
->arch
);
366 print_otag(h
, TAG_TITLE
, 0, NULL
);
367 print_text(h
, h
->buf
);
371 print_mdoc_nodelist(MDOC_ARGS
)
375 print_mdoc_node(meta
, n
, h
);
381 print_mdoc_node(MDOC_ARGS
)
391 child
= mdoc_root_pre(meta
, n
, h
);
394 /* No tables in this mode... */
395 assert(NULL
== h
->tblt
);
398 * Make sure that if we're in a literal mode already
399 * (i.e., within a <PRE>) don't print the newline.
401 if (' ' == *n
->string
&& MDOC_LINE
& n
->flags
)
402 if ( ! (HTML_LITERAL
& h
->flags
))
403 print_otag(h
, TAG_BR
, 0, NULL
);
404 if (MDOC_DELIMC
& n
->flags
)
405 h
->flags
|= HTML_NOSPACE
;
406 print_text(h
, n
->string
);
407 if (MDOC_DELIMO
& n
->flags
)
408 h
->flags
|= HTML_NOSPACE
;
411 print_eqn(h
, n
->eqn
);
415 * This will take care of initialising all of the table
416 * state data for the first table, then tearing it down
419 print_tbl(h
, n
->span
);
423 * Close out the current table, if it's open, and unset
424 * the "meta" table state. This will be reopened on the
425 * next table element.
427 if (h
->tblt
!= NULL
) {
431 assert(h
->tblt
== NULL
);
432 if (mdocs
[n
->tok
].pre
&& (n
->end
== ENDBODY_NOT
|| n
->child
))
433 child
= (*mdocs
[n
->tok
].pre
)(meta
, n
, h
);
437 if (HTML_KEEP
& h
->flags
) {
438 if (n
->prev
? (n
->prev
->lastline
!= n
->line
) :
439 (n
->parent
&& n
->parent
->line
!= n
->line
)) {
440 h
->flags
&= ~HTML_KEEP
;
441 h
->flags
|= HTML_PREKEEP
;
445 if (child
&& n
->child
)
446 print_mdoc_nodelist(meta
, n
->child
, h
);
452 mdoc_root_post(meta
, n
, h
);
457 if ( ! mdocs
[n
->tok
].post
|| n
->flags
& MDOC_ENDED
)
459 (*mdocs
[n
->tok
].post
)(meta
, n
, h
);
460 if (n
->end
!= ENDBODY_NOT
)
461 n
->pending
->flags
|= MDOC_ENDED
;
462 if (n
->end
== ENDBODY_NOSPACE
)
463 h
->flags
|= HTML_NOSPACE
;
469 mdoc_root_post(MDOC_ARGS
)
474 PAIR_CLASS_INIT(&tag
, "foot");
475 t
= print_otag(h
, TAG_TABLE
, 1, &tag
);
477 print_otag(h
, TAG_TBODY
, 0, NULL
);
479 tt
= print_otag(h
, TAG_TR
, 0, NULL
);
481 PAIR_CLASS_INIT(&tag
, "foot-date");
482 print_otag(h
, TAG_TD
, 1, &tag
);
483 print_text(h
, meta
->date
);
486 PAIR_CLASS_INIT(&tag
, "foot-os");
487 print_otag(h
, TAG_TD
, 1, &tag
);
488 print_text(h
, meta
->os
);
493 mdoc_root_pre(MDOC_ARGS
)
497 char *volume
, *title
;
499 if (NULL
== meta
->arch
)
500 volume
= mandoc_strdup(meta
->vol
);
502 mandoc_asprintf(&volume
, "%s (%s)",
503 meta
->vol
, meta
->arch
);
505 if (NULL
== meta
->msec
)
506 title
= mandoc_strdup(meta
->title
);
508 mandoc_asprintf(&title
, "%s(%s)",
509 meta
->title
, meta
->msec
);
511 PAIR_CLASS_INIT(&tag
, "head");
512 t
= print_otag(h
, TAG_TABLE
, 1, &tag
);
514 print_otag(h
, TAG_TBODY
, 0, NULL
);
516 tt
= print_otag(h
, TAG_TR
, 0, NULL
);
518 PAIR_CLASS_INIT(&tag
, "head-ltitle");
519 print_otag(h
, TAG_TD
, 1, &tag
);
520 print_text(h
, title
);
523 PAIR_CLASS_INIT(&tag
, "head-vol");
524 print_otag(h
, TAG_TD
, 1, &tag
);
525 print_text(h
, volume
);
528 PAIR_CLASS_INIT(&tag
, "head-rtitle");
529 print_otag(h
, TAG_TD
, 1, &tag
);
530 print_text(h
, title
);
539 mdoc_sh_pre(MDOC_ARGS
)
545 PAIR_CLASS_INIT(&tag
, "section");
546 print_otag(h
, TAG_DIV
, 1, &tag
);
549 if (n
->sec
== SEC_AUTHORS
)
550 h
->flags
&= ~(HTML_SPLIT
|HTML_NOSPLIT
);
559 for (n
= n
->child
; n
&& MDOC_TEXT
== n
->type
; ) {
560 bufcat_id(h
, n
->string
);
561 if (NULL
!= (n
= n
->next
))
566 PAIR_ID_INIT(&tag
, h
->buf
);
567 print_otag(h
, TAG_H1
, 1, &tag
);
569 print_otag(h
, TAG_H1
, 0, NULL
);
575 mdoc_ss_pre(MDOC_ARGS
)
579 if (MDOC_BLOCK
== n
->type
) {
580 PAIR_CLASS_INIT(&tag
, "subsection");
581 print_otag(h
, TAG_DIV
, 1, &tag
);
583 } else if (MDOC_BODY
== n
->type
)
589 for (n
= n
->child
; n
&& MDOC_TEXT
== n
->type
; ) {
590 bufcat_id(h
, n
->string
);
591 if (NULL
!= (n
= n
->next
))
596 PAIR_ID_INIT(&tag
, h
->buf
);
597 print_otag(h
, TAG_H2
, 1, &tag
);
599 print_otag(h
, TAG_H2
, 0, NULL
);
605 mdoc_fl_pre(MDOC_ARGS
)
609 PAIR_CLASS_INIT(&tag
, "flag");
610 print_otag(h
, TAG_B
, 1, &tag
);
612 /* `Cm' has no leading hyphen. */
614 if (MDOC_Cm
== n
->tok
)
617 print_text(h
, "\\-");
619 if ( ! (n
->nchild
== 0 &&
621 n
->next
->type
== MDOC_TEXT
||
622 n
->next
->flags
& MDOC_LINE
)))
623 h
->flags
|= HTML_NOSPACE
;
629 mdoc_nd_pre(MDOC_ARGS
)
633 if (MDOC_BODY
!= n
->type
)
636 /* XXX: this tag in theory can contain block elements. */
638 print_text(h
, "\\(em");
639 PAIR_CLASS_INIT(&tag
, "desc");
640 print_otag(h
, TAG_SPAN
, 1, &tag
);
645 mdoc_nm_pre(MDOC_ARGS
)
654 PAIR_CLASS_INIT(&tag
, "name");
655 print_otag(h
, TAG_B
, 1, &tag
);
656 if (NULL
== n
->child
&& meta
->name
)
657 print_text(h
, meta
->name
);
660 print_otag(h
, TAG_TD
, 0, NULL
);
661 if (NULL
== n
->child
&& meta
->name
)
662 print_text(h
, meta
->name
);
665 print_otag(h
, TAG_TD
, 0, NULL
);
672 PAIR_CLASS_INIT(&tag
, "synopsis");
673 print_otag(h
, TAG_TABLE
, 1, &tag
);
675 for (len
= 0, n
= n
->child
; n
; n
= n
->next
)
676 if (MDOC_TEXT
== n
->type
)
677 len
+= html_strlen(n
->string
);
679 if (0 == len
&& meta
->name
)
680 len
= html_strlen(meta
->name
);
682 SCALE_HS_INIT(&su
, len
);
684 bufcat_su(h
, "width", &su
);
685 PAIR_STYLE_INIT(&tag
, h
);
686 print_otag(h
, TAG_COL
, 1, &tag
);
687 print_otag(h
, TAG_COL
, 0, NULL
);
688 print_otag(h
, TAG_TBODY
, 0, NULL
);
689 print_otag(h
, TAG_TR
, 0, NULL
);
694 mdoc_xr_pre(MDOC_ARGS
)
696 struct htmlpair tag
[2];
698 if (NULL
== n
->child
)
701 PAIR_CLASS_INIT(&tag
[0], "link-man");
704 buffmt_man(h
, n
->child
->string
,
706 n
->child
->next
->string
: NULL
);
707 PAIR_HREF_INIT(&tag
[1], h
->buf
);
708 print_otag(h
, TAG_A
, 2, tag
);
710 print_otag(h
, TAG_A
, 1, tag
);
713 print_text(h
, n
->string
);
715 if (NULL
== (n
= n
->next
))
718 h
->flags
|= HTML_NOSPACE
;
720 h
->flags
|= HTML_NOSPACE
;
721 print_text(h
, n
->string
);
722 h
->flags
|= HTML_NOSPACE
;
728 mdoc_ns_pre(MDOC_ARGS
)
731 if ( ! (MDOC_LINE
& n
->flags
))
732 h
->flags
|= HTML_NOSPACE
;
737 mdoc_ar_pre(MDOC_ARGS
)
741 PAIR_CLASS_INIT(&tag
, "arg");
742 print_otag(h
, TAG_I
, 1, &tag
);
747 mdoc_xx_pre(MDOC_ARGS
)
776 PAIR_CLASS_INIT(&tag
, "unix");
777 print_otag(h
, TAG_SPAN
, 1, &tag
);
782 h
->flags
|= HTML_KEEP
;
783 print_text(h
, n
->child
->string
);
790 mdoc_bx_pre(MDOC_ARGS
)
794 PAIR_CLASS_INIT(&tag
, "unix");
795 print_otag(h
, TAG_SPAN
, 1, &tag
);
797 if (NULL
!= (n
= n
->child
)) {
798 print_text(h
, n
->string
);
799 h
->flags
|= HTML_NOSPACE
;
800 print_text(h
, "BSD");
802 print_text(h
, "BSD");
806 if (NULL
!= (n
= n
->next
)) {
807 h
->flags
|= HTML_NOSPACE
;
809 h
->flags
|= HTML_NOSPACE
;
810 print_text(h
, n
->string
);
817 mdoc_it_pre(MDOC_ARGS
)
821 struct htmlpair tag
[2];
822 const struct mdoc_node
*bl
;
825 while (bl
&& MDOC_Bl
!= bl
->tok
)
830 type
= bl
->norm
->Bl
.type
;
833 PAIR_CLASS_INIT(&tag
[0], lists
[type
]);
837 if (MDOC_HEAD
== n
->type
) {
858 SCALE_VS_INIT(&su
, ! bl
->norm
->Bl
.comp
);
859 bufcat_su(h
, "margin-top", &su
);
860 PAIR_STYLE_INIT(&tag
[1], h
);
861 print_otag(h
, TAG_DT
, 2, tag
);
862 if (LIST_diag
!= type
)
864 PAIR_CLASS_INIT(&tag
[0], "diag");
865 print_otag(h
, TAG_B
, 1, tag
);
872 } else if (MDOC_BODY
== n
->type
) {
883 SCALE_VS_INIT(&su
, ! bl
->norm
->Bl
.comp
);
884 bufcat_su(h
, "margin-top", &su
);
885 PAIR_STYLE_INIT(&tag
[1], h
);
886 print_otag(h
, TAG_LI
, 2, tag
);
897 if (NULL
== bl
->norm
->Bl
.width
) {
898 print_otag(h
, TAG_DD
, 1, tag
);
901 a2width(bl
->norm
->Bl
.width
, &su
);
902 bufcat_su(h
, "margin-left", &su
);
903 PAIR_STYLE_INIT(&tag
[1], h
);
904 print_otag(h
, TAG_DD
, 2, tag
);
907 SCALE_VS_INIT(&su
, ! bl
->norm
->Bl
.comp
);
908 bufcat_su(h
, "margin-top", &su
);
909 PAIR_STYLE_INIT(&tag
[1], h
);
910 print_otag(h
, TAG_TD
, 2, tag
);
918 print_otag(h
, TAG_TR
, 1, tag
);
929 mdoc_bl_pre(MDOC_ARGS
)
932 struct htmlpair tag
[3];
936 if (MDOC_BODY
== n
->type
) {
937 if (LIST_column
== n
->norm
->Bl
.type
)
938 print_otag(h
, TAG_TBODY
, 0, NULL
);
942 if (MDOC_HEAD
== n
->type
) {
943 if (LIST_column
!= n
->norm
->Bl
.type
)
947 * For each column, print out the <COL> tag with our
948 * suggested width. The last column gets min-width, as
949 * in terminal mode it auto-sizes to the width of the
950 * screen and we want to preserve that behaviour.
953 for (i
= 0; i
< (int)n
->norm
->Bl
.ncols
; i
++) {
955 a2width(n
->norm
->Bl
.cols
[i
], &su
);
956 if (i
< (int)n
->norm
->Bl
.ncols
- 1)
957 bufcat_su(h
, "width", &su
);
959 bufcat_su(h
, "min-width", &su
);
960 PAIR_STYLE_INIT(&tag
[0], h
);
961 print_otag(h
, TAG_COL
, 1, tag
);
967 SCALE_VS_INIT(&su
, 0);
969 bufcat_su(h
, "margin-top", &su
);
970 bufcat_su(h
, "margin-bottom", &su
);
971 PAIR_STYLE_INIT(&tag
[0], h
);
973 assert(lists
[n
->norm
->Bl
.type
]);
974 (void)strlcpy(buf
, "list ", BUFSIZ
);
975 (void)strlcat(buf
, lists
[n
->norm
->Bl
.type
], BUFSIZ
);
976 PAIR_INIT(&tag
[1], ATTR_CLASS
, buf
);
978 /* Set the block's left-hand margin. */
980 if (n
->norm
->Bl
.offs
) {
981 a2width(n
->norm
->Bl
.offs
, &su
);
982 bufcat_su(h
, "margin-left", &su
);
985 switch (n
->norm
->Bl
.type
) {
993 print_otag(h
, TAG_UL
, 2, tag
);
996 print_otag(h
, TAG_OL
, 2, tag
);
1007 print_otag(h
, TAG_DL
, 2, tag
);
1010 print_otag(h
, TAG_TABLE
, 2, tag
);
1021 mdoc_ex_pre(MDOC_ARGS
)
1024 struct htmlpair tag
;
1028 print_otag(h
, TAG_BR
, 0, NULL
);
1030 PAIR_CLASS_INIT(&tag
, "utility");
1032 print_text(h
, "The");
1035 for (n
= n
->child
; n
; n
= n
->next
) {
1036 assert(MDOC_TEXT
== n
->type
);
1038 t
= print_otag(h
, TAG_B
, 1, &tag
);
1039 print_text(h
, n
->string
);
1042 if (nchild
> 2 && n
->next
) {
1043 h
->flags
|= HTML_NOSPACE
;
1047 if (n
->next
&& NULL
== n
->next
->next
)
1048 print_text(h
, "and");
1052 print_text(h
, "utilities exit\\~0");
1054 print_text(h
, "utility exits\\~0");
1056 print_text(h
, "on success, and\\~>0 if an error occurs.");
1061 mdoc_em_pre(MDOC_ARGS
)
1063 struct htmlpair tag
;
1065 PAIR_CLASS_INIT(&tag
, "emph");
1066 print_otag(h
, TAG_SPAN
, 1, &tag
);
1071 mdoc_d1_pre(MDOC_ARGS
)
1073 struct htmlpair tag
[2];
1076 if (MDOC_BLOCK
!= n
->type
)
1079 SCALE_VS_INIT(&su
, 0);
1081 bufcat_su(h
, "margin-top", &su
);
1082 bufcat_su(h
, "margin-bottom", &su
);
1083 PAIR_STYLE_INIT(&tag
[0], h
);
1084 print_otag(h
, TAG_BLOCKQUOTE
, 1, tag
);
1086 /* BLOCKQUOTE needs a block body. */
1088 PAIR_CLASS_INIT(&tag
[0], "display");
1089 print_otag(h
, TAG_DIV
, 1, tag
);
1091 if (MDOC_Dl
== n
->tok
) {
1092 PAIR_CLASS_INIT(&tag
[0], "lit");
1093 print_otag(h
, TAG_CODE
, 1, tag
);
1100 mdoc_sx_pre(MDOC_ARGS
)
1102 struct htmlpair tag
[2];
1107 for (n
= n
->child
; n
; ) {
1108 bufcat_id(h
, n
->string
);
1109 if (NULL
!= (n
= n
->next
))
1113 PAIR_CLASS_INIT(&tag
[0], "link-sec");
1114 PAIR_HREF_INIT(&tag
[1], h
->buf
);
1116 print_otag(h
, TAG_I
, 1, tag
);
1117 print_otag(h
, TAG_A
, 2, tag
);
1122 mdoc_bd_pre(MDOC_ARGS
)
1124 struct htmlpair tag
[2];
1126 const struct mdoc_node
*nn
;
1129 if (MDOC_HEAD
== n
->type
)
1132 if (MDOC_BLOCK
== n
->type
) {
1133 comp
= n
->norm
->Bd
.comp
;
1134 for (nn
= n
; nn
&& ! comp
; nn
= nn
->parent
) {
1135 if (MDOC_BLOCK
!= nn
->type
)
1137 if (MDOC_Ss
== nn
->tok
|| MDOC_Sh
== nn
->tok
)
1147 /* Handle the -offset argument. */
1149 if (n
->norm
->Bd
.offs
== NULL
||
1150 ! strcmp(n
->norm
->Bd
.offs
, "left"))
1151 SCALE_HS_INIT(&su
, 0);
1152 else if ( ! strcmp(n
->norm
->Bd
.offs
, "indent"))
1153 SCALE_HS_INIT(&su
, INDENT
);
1154 else if ( ! strcmp(n
->norm
->Bd
.offs
, "indent-two"))
1155 SCALE_HS_INIT(&su
, INDENT
* 2);
1157 a2width(n
->norm
->Bd
.offs
, &su
);
1160 bufcat_su(h
, "margin-left", &su
);
1161 PAIR_STYLE_INIT(&tag
[0], h
);
1163 if (DISP_unfilled
!= n
->norm
->Bd
.type
&&
1164 DISP_literal
!= n
->norm
->Bd
.type
) {
1165 PAIR_CLASS_INIT(&tag
[1], "display");
1166 print_otag(h
, TAG_DIV
, 2, tag
);
1170 PAIR_CLASS_INIT(&tag
[1], "lit display");
1171 print_otag(h
, TAG_PRE
, 2, tag
);
1173 /* This can be recursive: save & set our literal state. */
1175 sv
= h
->flags
& HTML_LITERAL
;
1176 h
->flags
|= HTML_LITERAL
;
1178 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1179 print_mdoc_node(meta
, nn
, h
);
1181 * If the printed node flushes its own line, then we
1182 * needn't do it here as well. This is hacky, but the
1183 * notion of selective eoln whitespace is pretty dumb
1184 * anyway, so don't sweat it.
1206 if (h
->flags
& HTML_NONEWLINE
||
1207 (nn
->next
&& ! (nn
->next
->flags
& MDOC_LINE
)))
1210 print_text(h
, "\n");
1212 h
->flags
|= HTML_NOSPACE
;
1216 h
->flags
&= ~HTML_LITERAL
;
1222 mdoc_pa_pre(MDOC_ARGS
)
1224 struct htmlpair tag
;
1226 PAIR_CLASS_INIT(&tag
, "file");
1227 print_otag(h
, TAG_I
, 1, &tag
);
1232 mdoc_ad_pre(MDOC_ARGS
)
1234 struct htmlpair tag
;
1236 PAIR_CLASS_INIT(&tag
, "addr");
1237 print_otag(h
, TAG_I
, 1, &tag
);
1242 mdoc_an_pre(MDOC_ARGS
)
1244 struct htmlpair tag
;
1246 if (n
->norm
->An
.auth
== AUTH_split
) {
1247 h
->flags
&= ~HTML_NOSPLIT
;
1248 h
->flags
|= HTML_SPLIT
;
1251 if (n
->norm
->An
.auth
== AUTH_nosplit
) {
1252 h
->flags
&= ~HTML_SPLIT
;
1253 h
->flags
|= HTML_NOSPLIT
;
1257 if (n
->child
== NULL
)
1260 if (h
->flags
& HTML_SPLIT
)
1261 print_otag(h
, TAG_BR
, 0, NULL
);
1263 if (n
->sec
== SEC_AUTHORS
&& ! (h
->flags
& HTML_NOSPLIT
))
1264 h
->flags
|= HTML_SPLIT
;
1266 PAIR_CLASS_INIT(&tag
, "author");
1267 print_otag(h
, TAG_SPAN
, 1, &tag
);
1272 mdoc_cd_pre(MDOC_ARGS
)
1274 struct htmlpair tag
;
1277 PAIR_CLASS_INIT(&tag
, "config");
1278 print_otag(h
, TAG_B
, 1, &tag
);
1283 mdoc_dv_pre(MDOC_ARGS
)
1285 struct htmlpair tag
;
1287 PAIR_CLASS_INIT(&tag
, "define");
1288 print_otag(h
, TAG_SPAN
, 1, &tag
);
1293 mdoc_ev_pre(MDOC_ARGS
)
1295 struct htmlpair tag
;
1297 PAIR_CLASS_INIT(&tag
, "env");
1298 print_otag(h
, TAG_SPAN
, 1, &tag
);
1303 mdoc_er_pre(MDOC_ARGS
)
1305 struct htmlpair tag
;
1307 PAIR_CLASS_INIT(&tag
, "errno");
1308 print_otag(h
, TAG_SPAN
, 1, &tag
);
1313 mdoc_fa_pre(MDOC_ARGS
)
1315 const struct mdoc_node
*nn
;
1316 struct htmlpair tag
;
1319 PAIR_CLASS_INIT(&tag
, "farg");
1320 if (n
->parent
->tok
!= MDOC_Fo
) {
1321 print_otag(h
, TAG_I
, 1, &tag
);
1325 for (nn
= n
->child
; nn
; nn
= nn
->next
) {
1326 t
= print_otag(h
, TAG_I
, 1, &tag
);
1327 print_text(h
, nn
->string
);
1330 h
->flags
|= HTML_NOSPACE
;
1335 if (n
->child
&& n
->next
&& n
->next
->tok
== MDOC_Fa
) {
1336 h
->flags
|= HTML_NOSPACE
;
1344 mdoc_fd_pre(MDOC_ARGS
)
1346 struct htmlpair tag
[2];
1354 if (NULL
== (n
= n
->child
))
1357 assert(MDOC_TEXT
== n
->type
);
1359 if (strcmp(n
->string
, "#include")) {
1360 PAIR_CLASS_INIT(&tag
[0], "macro");
1361 print_otag(h
, TAG_B
, 1, tag
);
1365 PAIR_CLASS_INIT(&tag
[0], "includes");
1366 print_otag(h
, TAG_B
, 1, tag
);
1367 print_text(h
, n
->string
);
1369 if (NULL
!= (n
= n
->next
)) {
1370 assert(MDOC_TEXT
== n
->type
);
1373 * XXX This is broken and not easy to fix.
1374 * When using -Oincludes, truncation may occur.
1375 * Dynamic allocation wouldn't help because
1376 * passing long strings to buffmt_includes()
1377 * does not work either.
1380 strlcpy(buf
, '<' == *n
->string
|| '"' == *n
->string
?
1381 n
->string
+ 1 : n
->string
, BUFSIZ
);
1384 if (sz
&& ('>' == buf
[sz
- 1] || '"' == buf
[sz
- 1]))
1387 PAIR_CLASS_INIT(&tag
[0], "link-includes");
1390 if (h
->base_includes
) {
1391 buffmt_includes(h
, buf
);
1392 PAIR_HREF_INIT(&tag
[i
], h
->buf
);
1396 t
= print_otag(h
, TAG_A
, i
, tag
);
1397 print_text(h
, n
->string
);
1403 for ( ; n
; n
= n
->next
) {
1404 assert(MDOC_TEXT
== n
->type
);
1405 print_text(h
, n
->string
);
1412 mdoc_vt_pre(MDOC_ARGS
)
1414 struct htmlpair tag
;
1416 if (MDOC_BLOCK
== n
->type
) {
1419 } else if (MDOC_ELEM
== n
->type
) {
1421 } else if (MDOC_HEAD
== n
->type
)
1424 PAIR_CLASS_INIT(&tag
, "type");
1425 print_otag(h
, TAG_SPAN
, 1, &tag
);
1430 mdoc_ft_pre(MDOC_ARGS
)
1432 struct htmlpair tag
;
1435 PAIR_CLASS_INIT(&tag
, "ftype");
1436 print_otag(h
, TAG_I
, 1, &tag
);
1441 mdoc_fn_pre(MDOC_ARGS
)
1444 struct htmlpair tag
[2];
1446 const char *sp
, *ep
;
1449 pretty
= MDOC_SYNPRETTY
& n
->flags
;
1452 /* Split apart into type and name. */
1453 assert(n
->child
->string
);
1454 sp
= n
->child
->string
;
1456 ep
= strchr(sp
, ' ');
1458 PAIR_CLASS_INIT(&tag
[0], "ftype");
1459 t
= print_otag(h
, TAG_I
, 1, tag
);
1462 sz
= MIN((int)(ep
- sp
), BUFSIZ
- 1);
1463 (void)memcpy(nbuf
, sp
, (size_t)sz
);
1465 print_text(h
, nbuf
);
1467 ep
= strchr(sp
, ' ');
1472 PAIR_CLASS_INIT(&tag
[0], "fname");
1475 * FIXME: only refer to IDs that we know exist.
1479 if (MDOC_SYNPRETTY
& n
->flags
) {
1481 html_idcat(nbuf
, sp
, BUFSIZ
);
1482 PAIR_ID_INIT(&tag
[1], nbuf
);
1484 strlcpy(nbuf
, "#", BUFSIZ
);
1485 html_idcat(nbuf
, sp
, BUFSIZ
);
1486 PAIR_HREF_INIT(&tag
[1], nbuf
);
1490 t
= print_otag(h
, TAG_B
, 1, tag
);
1497 h
->flags
|= HTML_NOSPACE
;
1499 h
->flags
|= HTML_NOSPACE
;
1501 PAIR_CLASS_INIT(&tag
[0], "farg");
1503 bufcat_style(h
, "white-space", "nowrap");
1504 PAIR_STYLE_INIT(&tag
[1], h
);
1506 for (n
= n
->child
->next
; n
; n
= n
->next
) {
1508 if (MDOC_SYNPRETTY
& n
->flags
)
1510 t
= print_otag(h
, TAG_I
, i
, tag
);
1511 print_text(h
, n
->string
);
1514 h
->flags
|= HTML_NOSPACE
;
1519 h
->flags
|= HTML_NOSPACE
;
1523 h
->flags
|= HTML_NOSPACE
;
1531 mdoc_sm_pre(MDOC_ARGS
)
1534 if (NULL
== n
->child
)
1535 h
->flags
^= HTML_NONOSPACE
;
1536 else if (0 == strcmp("on", n
->child
->string
))
1537 h
->flags
&= ~HTML_NONOSPACE
;
1539 h
->flags
|= HTML_NONOSPACE
;
1541 if ( ! (HTML_NONOSPACE
& h
->flags
))
1542 h
->flags
&= ~HTML_NOSPACE
;
1548 mdoc_skip_pre(MDOC_ARGS
)
1555 mdoc_pp_pre(MDOC_ARGS
)
1563 mdoc_sp_pre(MDOC_ARGS
)
1566 struct htmlpair tag
;
1568 SCALE_VS_INIT(&su
, 1);
1570 if (MDOC_sp
== n
->tok
) {
1571 if (NULL
!= (n
= n
->child
)) {
1572 if ( ! a2roffsu(n
->string
, &su
, SCALE_VS
))
1574 else if (su
.scale
< 0.0)
1581 bufcat_su(h
, "height", &su
);
1582 PAIR_STYLE_INIT(&tag
, h
);
1583 print_otag(h
, TAG_DIV
, 1, &tag
);
1585 /* So the div isn't empty: */
1586 print_text(h
, "\\~");
1593 mdoc_lk_pre(MDOC_ARGS
)
1595 struct htmlpair tag
[2];
1597 if (NULL
== (n
= n
->child
))
1600 assert(MDOC_TEXT
== n
->type
);
1602 PAIR_CLASS_INIT(&tag
[0], "link-ext");
1603 PAIR_HREF_INIT(&tag
[1], n
->string
);
1605 print_otag(h
, TAG_A
, 2, tag
);
1607 if (NULL
== n
->next
)
1608 print_text(h
, n
->string
);
1610 for (n
= n
->next
; n
; n
= n
->next
)
1611 print_text(h
, n
->string
);
1617 mdoc_mt_pre(MDOC_ARGS
)
1619 struct htmlpair tag
[2];
1622 PAIR_CLASS_INIT(&tag
[0], "link-mail");
1624 for (n
= n
->child
; n
; n
= n
->next
) {
1625 assert(MDOC_TEXT
== n
->type
);
1628 bufcat(h
, "mailto:");
1629 bufcat(h
, n
->string
);
1631 PAIR_HREF_INIT(&tag
[1], h
->buf
);
1632 t
= print_otag(h
, TAG_A
, 2, tag
);
1633 print_text(h
, n
->string
);
1641 mdoc_fo_pre(MDOC_ARGS
)
1643 struct htmlpair tag
;
1646 if (MDOC_BODY
== n
->type
) {
1647 h
->flags
|= HTML_NOSPACE
;
1649 h
->flags
|= HTML_NOSPACE
;
1651 } else if (MDOC_BLOCK
== n
->type
) {
1656 /* XXX: we drop non-initial arguments as per groff. */
1659 assert(n
->child
->string
);
1661 PAIR_CLASS_INIT(&tag
, "fname");
1662 t
= print_otag(h
, TAG_B
, 1, &tag
);
1663 print_text(h
, n
->child
->string
);
1669 mdoc_fo_post(MDOC_ARGS
)
1672 if (MDOC_BODY
!= n
->type
)
1674 h
->flags
|= HTML_NOSPACE
;
1676 h
->flags
|= HTML_NOSPACE
;
1681 mdoc_in_pre(MDOC_ARGS
)
1684 struct htmlpair tag
[2];
1689 PAIR_CLASS_INIT(&tag
[0], "includes");
1690 print_otag(h
, TAG_B
, 1, tag
);
1693 * The first argument of the `In' gets special treatment as
1694 * being a linked value. Subsequent values are printed
1695 * afterward. groff does similarly. This also handles the case
1699 if (MDOC_SYNPRETTY
& n
->flags
&& MDOC_LINE
& n
->flags
)
1700 print_text(h
, "#include");
1703 h
->flags
|= HTML_NOSPACE
;
1705 if (NULL
!= (n
= n
->child
)) {
1706 assert(MDOC_TEXT
== n
->type
);
1708 PAIR_CLASS_INIT(&tag
[0], "link-includes");
1711 if (h
->base_includes
) {
1712 buffmt_includes(h
, n
->string
);
1713 PAIR_HREF_INIT(&tag
[i
], h
->buf
);
1717 t
= print_otag(h
, TAG_A
, i
, tag
);
1718 print_text(h
, n
->string
);
1724 h
->flags
|= HTML_NOSPACE
;
1727 for ( ; n
; n
= n
->next
) {
1728 assert(MDOC_TEXT
== n
->type
);
1729 print_text(h
, n
->string
);
1736 mdoc_ic_pre(MDOC_ARGS
)
1738 struct htmlpair tag
;
1740 PAIR_CLASS_INIT(&tag
, "cmd");
1741 print_otag(h
, TAG_B
, 1, &tag
);
1746 mdoc_rv_pre(MDOC_ARGS
)
1748 struct htmlpair tag
;
1753 print_otag(h
, TAG_BR
, 0, NULL
);
1755 PAIR_CLASS_INIT(&tag
, "fname");
1759 print_text(h
, "The");
1761 for (n
= n
->child
; n
; n
= n
->next
) {
1762 t
= print_otag(h
, TAG_B
, 1, &tag
);
1763 print_text(h
, n
->string
);
1766 h
->flags
|= HTML_NOSPACE
;
1767 print_text(h
, "()");
1769 if (n
->next
== NULL
)
1773 h
->flags
|= HTML_NOSPACE
;
1776 if (n
->next
->next
== NULL
)
1777 print_text(h
, "and");
1781 print_text(h
, "functions return");
1783 print_text(h
, "function returns");
1785 print_text(h
, "the value\\~0 if successful;");
1787 print_text(h
, "Upon successful completion,"
1788 " the value\\~0 is returned;");
1790 print_text(h
, "otherwise the value\\~\\-1 is returned"
1791 " and the global variable");
1793 PAIR_CLASS_INIT(&tag
, "var");
1794 t
= print_otag(h
, TAG_B
, 1, &tag
);
1795 print_text(h
, "errno");
1797 print_text(h
, "is set to indicate the error.");
1802 mdoc_va_pre(MDOC_ARGS
)
1804 struct htmlpair tag
;
1806 PAIR_CLASS_INIT(&tag
, "var");
1807 print_otag(h
, TAG_B
, 1, &tag
);
1812 mdoc_ap_pre(MDOC_ARGS
)
1815 h
->flags
|= HTML_NOSPACE
;
1816 print_text(h
, "\\(aq");
1817 h
->flags
|= HTML_NOSPACE
;
1822 mdoc_bf_pre(MDOC_ARGS
)
1824 struct htmlpair tag
[2];
1827 if (MDOC_HEAD
== n
->type
)
1829 else if (MDOC_BODY
!= n
->type
)
1832 if (FONT_Em
== n
->norm
->Bf
.font
)
1833 PAIR_CLASS_INIT(&tag
[0], "emph");
1834 else if (FONT_Sy
== n
->norm
->Bf
.font
)
1835 PAIR_CLASS_INIT(&tag
[0], "symb");
1836 else if (FONT_Li
== n
->norm
->Bf
.font
)
1837 PAIR_CLASS_INIT(&tag
[0], "lit");
1839 PAIR_CLASS_INIT(&tag
[0], "none");
1842 * We want this to be inline-formatted, but needs to be div to
1843 * accept block children.
1846 bufcat_style(h
, "display", "inline");
1847 SCALE_HS_INIT(&su
, 1);
1848 /* Needs a left-margin for spacing. */
1849 bufcat_su(h
, "margin-left", &su
);
1850 PAIR_STYLE_INIT(&tag
[1], h
);
1851 print_otag(h
, TAG_DIV
, 2, tag
);
1856 mdoc_ms_pre(MDOC_ARGS
)
1858 struct htmlpair tag
;
1860 PAIR_CLASS_INIT(&tag
, "symb");
1861 print_otag(h
, TAG_SPAN
, 1, &tag
);
1866 mdoc_igndelim_pre(MDOC_ARGS
)
1869 h
->flags
|= HTML_IGNDELIM
;
1874 mdoc_pf_post(MDOC_ARGS
)
1877 if ( ! (n
->next
== NULL
|| n
->next
->flags
& MDOC_LINE
))
1878 h
->flags
|= HTML_NOSPACE
;
1882 mdoc_rs_pre(MDOC_ARGS
)
1884 struct htmlpair tag
;
1886 if (MDOC_BLOCK
!= n
->type
)
1889 if (n
->prev
&& SEC_SEE_ALSO
== n
->sec
)
1892 PAIR_CLASS_INIT(&tag
, "ref");
1893 print_otag(h
, TAG_SPAN
, 1, &tag
);
1898 mdoc_no_pre(MDOC_ARGS
)
1900 struct htmlpair tag
;
1902 PAIR_CLASS_INIT(&tag
, "none");
1903 print_otag(h
, TAG_CODE
, 1, &tag
);
1908 mdoc_li_pre(MDOC_ARGS
)
1910 struct htmlpair tag
;
1912 PAIR_CLASS_INIT(&tag
, "lit");
1913 print_otag(h
, TAG_CODE
, 1, &tag
);
1918 mdoc_sy_pre(MDOC_ARGS
)
1920 struct htmlpair tag
;
1922 PAIR_CLASS_INIT(&tag
, "symb");
1923 print_otag(h
, TAG_SPAN
, 1, &tag
);
1928 mdoc_bt_pre(MDOC_ARGS
)
1931 print_text(h
, "is currently in beta test.");
1936 mdoc_ud_pre(MDOC_ARGS
)
1939 print_text(h
, "currently under development.");
1944 mdoc_lb_pre(MDOC_ARGS
)
1946 struct htmlpair tag
;
1948 if (SEC_LIBRARY
== n
->sec
&& MDOC_LINE
& n
->flags
&& n
->prev
)
1949 print_otag(h
, TAG_BR
, 0, NULL
);
1951 PAIR_CLASS_INIT(&tag
, "lib");
1952 print_otag(h
, TAG_SPAN
, 1, &tag
);
1957 mdoc__x_pre(MDOC_ARGS
)
1959 struct htmlpair tag
[2];
1966 PAIR_CLASS_INIT(&tag
[0], "ref-auth");
1967 if (n
->prev
&& MDOC__A
== n
->prev
->tok
)
1968 if (NULL
== n
->next
|| MDOC__A
!= n
->next
->tok
)
1969 print_text(h
, "and");
1972 PAIR_CLASS_INIT(&tag
[0], "ref-book");
1976 PAIR_CLASS_INIT(&tag
[0], "ref-city");
1979 PAIR_CLASS_INIT(&tag
[0], "ref-date");
1982 PAIR_CLASS_INIT(&tag
[0], "ref-issue");
1986 PAIR_CLASS_INIT(&tag
[0], "ref-jrnl");
1990 PAIR_CLASS_INIT(&tag
[0], "ref-num");
1993 PAIR_CLASS_INIT(&tag
[0], "ref-opt");
1996 PAIR_CLASS_INIT(&tag
[0], "ref-page");
1999 PAIR_CLASS_INIT(&tag
[0], "ref-corp");
2002 PAIR_CLASS_INIT(&tag
[0], "ref-rep");
2005 PAIR_CLASS_INIT(&tag
[0], "ref-title");
2008 PAIR_CLASS_INIT(&tag
[0], "link-ref");
2011 PAIR_CLASS_INIT(&tag
[0], "ref-vol");
2018 if (MDOC__U
!= n
->tok
) {
2019 print_otag(h
, t
, 1, tag
);
2023 PAIR_HREF_INIT(&tag
[1], n
->child
->string
);
2024 print_otag(h
, TAG_A
, 2, tag
);
2030 mdoc__x_post(MDOC_ARGS
)
2033 if (MDOC__A
== n
->tok
&& n
->next
&& MDOC__A
== n
->next
->tok
)
2034 if (NULL
== n
->next
->next
|| MDOC__A
!= n
->next
->next
->tok
)
2035 if (NULL
== n
->prev
|| MDOC__A
!= n
->prev
->tok
)
2040 if (NULL
== n
->parent
|| MDOC_Rs
!= n
->parent
->tok
)
2043 h
->flags
|= HTML_NOSPACE
;
2044 print_text(h
, n
->next
? "," : ".");
2048 mdoc_bk_pre(MDOC_ARGS
)
2057 if (n
->parent
->args
|| 0 == n
->prev
->nchild
)
2058 h
->flags
|= HTML_PREKEEP
;
2069 mdoc_bk_post(MDOC_ARGS
)
2072 if (MDOC_BODY
== n
->type
)
2073 h
->flags
&= ~(HTML_KEEP
| HTML_PREKEEP
);
2077 mdoc_quote_pre(MDOC_ARGS
)
2079 struct htmlpair tag
;
2081 if (MDOC_BODY
!= n
->type
)
2088 print_text(h
, n
->nchild
== 1 &&
2089 n
->child
->tok
== MDOC_Mt
? "<" : "\\(la");
2094 print_text(h
, "\\(lC");
2099 print_text(h
, "\\(lB");
2104 print_text(h
, "\\(lB");
2105 h
->flags
|= HTML_NOSPACE
;
2106 PAIR_CLASS_INIT(&tag
, "opt");
2107 print_otag(h
, TAG_SPAN
, 1, &tag
);
2110 if (NULL
== n
->norm
->Es
||
2111 NULL
== n
->norm
->Es
->child
)
2113 print_text(h
, n
->norm
->Es
->child
->string
);
2124 print_text(h
, "\\(lq");
2132 print_text(h
, "\\(oq");
2133 h
->flags
|= HTML_NOSPACE
;
2134 PAIR_CLASS_INIT(&tag
, "lit");
2135 print_otag(h
, TAG_CODE
, 1, &tag
);
2140 print_text(h
, "\\(oq");
2147 h
->flags
|= HTML_NOSPACE
;
2152 mdoc_quote_post(MDOC_ARGS
)
2155 if (n
->type
!= MDOC_BODY
&& n
->type
!= MDOC_ELEM
)
2158 if ( ! (n
->tok
== MDOC_En
||
2159 (n
->tok
== MDOC_Eo
&& n
->end
== ENDBODY_SPACE
)))
2160 h
->flags
|= HTML_NOSPACE
;
2166 print_text(h
, n
->nchild
== 1 &&
2167 n
->child
->tok
== MDOC_Mt
? ">" : "\\(ra");
2172 print_text(h
, "\\(rC");
2181 print_text(h
, "\\(rB");
2184 if (NULL
!= n
->norm
->Es
&&
2185 NULL
!= n
->norm
->Es
->child
&&
2186 NULL
!= n
->norm
->Es
->child
->next
) {
2187 h
->flags
|= HTML_NOSPACE
;
2188 print_text(h
, n
->norm
->Es
->child
->next
->string
);
2200 print_text(h
, "\\(rq");
2212 print_text(h
, "\\(cq");