]>
git.cameronkatri.com Git - mandoc.git/blob - man_html.c
1 /* $Id: man_html.c,v 1.107 2014/12/04 02:05:42 schwarze Exp $ */
3 * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2013, 2014 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>
28 #include "mandoc_aux.h"
34 /* TODO: preserve ident widths. */
35 /* FIXME: have PD set the default vspace width. */
39 #define MAN_ARGS const struct man_meta *man, \
40 const struct man_node *n, \
46 #define MANH_LITERAL (1 << 0) /* literal context */
51 int (*post
)(MAN_ARGS
);
54 static void print_bvspace(struct html
*,
55 const struct man_node
*);
56 static void print_man(MAN_ARGS
);
57 static void print_man_head(MAN_ARGS
);
58 static void print_man_nodelist(MAN_ARGS
);
59 static void print_man_node(MAN_ARGS
);
60 static int a2width(const struct man_node
*,
62 static int man_B_pre(MAN_ARGS
);
63 static int man_HP_pre(MAN_ARGS
);
64 static int man_IP_pre(MAN_ARGS
);
65 static int man_I_pre(MAN_ARGS
);
66 static int man_OP_pre(MAN_ARGS
);
67 static int man_PP_pre(MAN_ARGS
);
68 static int man_RS_pre(MAN_ARGS
);
69 static int man_SH_pre(MAN_ARGS
);
70 static int man_SM_pre(MAN_ARGS
);
71 static int man_SS_pre(MAN_ARGS
);
72 static int man_UR_pre(MAN_ARGS
);
73 static int man_alt_pre(MAN_ARGS
);
74 static int man_br_pre(MAN_ARGS
);
75 static int man_ign_pre(MAN_ARGS
);
76 static int man_in_pre(MAN_ARGS
);
77 static int man_literal_pre(MAN_ARGS
);
78 static void man_root_post(MAN_ARGS
);
79 static void man_root_pre(MAN_ARGS
);
81 static const struct htmlman mans
[MAN_MAX
] = {
82 { man_br_pre
, NULL
}, /* br */
83 { NULL
, NULL
}, /* TH */
84 { man_SH_pre
, NULL
}, /* SH */
85 { man_SS_pre
, NULL
}, /* SS */
86 { man_IP_pre
, NULL
}, /* TP */
87 { man_PP_pre
, NULL
}, /* LP */
88 { man_PP_pre
, NULL
}, /* PP */
89 { man_PP_pre
, NULL
}, /* P */
90 { man_IP_pre
, NULL
}, /* IP */
91 { man_HP_pre
, NULL
}, /* HP */
92 { man_SM_pre
, NULL
}, /* SM */
93 { man_SM_pre
, NULL
}, /* SB */
94 { man_alt_pre
, NULL
}, /* BI */
95 { man_alt_pre
, NULL
}, /* IB */
96 { man_alt_pre
, NULL
}, /* BR */
97 { man_alt_pre
, NULL
}, /* RB */
98 { NULL
, NULL
}, /* R */
99 { man_B_pre
, NULL
}, /* B */
100 { man_I_pre
, NULL
}, /* I */
101 { man_alt_pre
, NULL
}, /* IR */
102 { man_alt_pre
, NULL
}, /* RI */
103 { man_ign_pre
, NULL
}, /* na */
104 { man_br_pre
, NULL
}, /* sp */
105 { man_literal_pre
, NULL
}, /* nf */
106 { man_literal_pre
, NULL
}, /* fi */
107 { NULL
, NULL
}, /* RE */
108 { man_RS_pre
, NULL
}, /* RS */
109 { man_ign_pre
, NULL
}, /* DT */
110 { man_ign_pre
, NULL
}, /* UC */
111 { man_ign_pre
, NULL
}, /* PD */
112 { man_ign_pre
, NULL
}, /* AT */
113 { man_in_pre
, NULL
}, /* in */
114 { man_ign_pre
, NULL
}, /* ft */
115 { man_OP_pre
, NULL
}, /* OP */
116 { man_literal_pre
, NULL
}, /* EX */
117 { man_literal_pre
, NULL
}, /* EE */
118 { man_UR_pre
, NULL
}, /* UR */
119 { NULL
, NULL
}, /* UE */
120 { man_ign_pre
, NULL
}, /* ll */
125 * Printing leading vertical space before a block.
126 * This is used for the paragraph macros.
127 * The rules are pretty simple, since there's very little nesting going
128 * on here. Basically, if we're the first within another block (SS/SH),
129 * then don't emit vertical space. If we are (RS), then do. If not the
133 print_bvspace(struct html
*h
, const struct man_node
*n
)
136 if (n
->body
&& n
->body
->child
)
137 if (MAN_TBL
== n
->body
->child
->type
)
140 if (MAN_ROOT
== n
->parent
->type
|| MAN_RS
!= n
->parent
->tok
)
148 html_man(void *arg
, const struct man
*man
)
152 memset(&mh
, 0, sizeof(struct mhtml
));
153 print_man(man_meta(man
), man_node(man
), &mh
, (struct html
*)arg
);
163 PAIR_CLASS_INIT(&tag
, "mandoc");
165 if ( ! (HTML_FRAGMENT
& h
->oflags
)) {
167 t
= print_otag(h
, TAG_HTML
, 0, NULL
);
168 tt
= print_otag(h
, TAG_HEAD
, 0, NULL
);
169 print_man_head(man
, n
, mh
, h
);
171 print_otag(h
, TAG_BODY
, 0, NULL
);
172 print_otag(h
, TAG_DIV
, 1, &tag
);
174 t
= print_otag(h
, TAG_DIV
, 1, &tag
);
176 print_man_nodelist(man
, n
, mh
, h
);
181 print_man_head(MAN_ARGS
)
187 bufcat_fmt(h
, "%s(%s)", man
->title
, man
->msec
);
188 print_otag(h
, TAG_TITLE
, 0, NULL
);
189 print_text(h
, h
->buf
);
193 print_man_nodelist(MAN_ARGS
)
196 print_man_node(man
, n
, mh
, h
);
198 print_man_nodelist(man
, n
->next
, mh
, h
);
202 print_man_node(MAN_ARGS
)
212 man_root_pre(man
, n
, mh
, h
);
215 if ('\0' == *n
->string
) {
219 if (n
->flags
& MAN_LINE
&& (*n
->string
== ' ' ||
220 (n
->prev
!= NULL
&& mh
->fl
& MANH_LITERAL
&&
221 ! (h
->flags
& HTML_NONEWLINE
))))
222 print_otag(h
, TAG_BR
, 0, NULL
);
223 print_text(h
, n
->string
);
226 print_eqn(h
, n
->eqn
);
230 * This will take care of initialising all of the table
231 * state data for the first table, then tearing it down
234 print_tbl(h
, n
->span
);
238 * Close out scope of font prior to opening a macro
241 if (HTMLFONT_NONE
!= h
->metac
) {
243 h
->metac
= HTMLFONT_NONE
;
247 * Close out the current table, if it's open, and unset
248 * the "meta" table state. This will be reopened on the
249 * next table element.
255 if (mans
[n
->tok
].pre
)
256 child
= (*mans
[n
->tok
].pre
)(man
, n
, mh
, h
);
260 if (child
&& n
->child
)
261 print_man_nodelist(man
, n
->child
, mh
, h
);
263 /* This will automatically close out any font scope. */
268 man_root_post(man
, n
, mh
, h
);
273 if (mans
[n
->tok
].post
)
274 (*mans
[n
->tok
].post
)(man
, n
, mh
, h
);
280 a2width(const struct man_node
*n
, struct roffsu
*su
)
283 if (MAN_TEXT
!= n
->type
)
285 if (a2roffsu(n
->string
, su
, SCALE_EN
))
292 man_root_pre(MAN_ARGS
)
300 mandoc_asprintf(&title
, "%s(%s)", man
->title
, man
->msec
);
302 PAIR_CLASS_INIT(&tag
, "head");
303 t
= print_otag(h
, TAG_TABLE
, 1, &tag
);
305 print_otag(h
, TAG_TBODY
, 0, NULL
);
307 tt
= print_otag(h
, TAG_TR
, 0, NULL
);
309 PAIR_CLASS_INIT(&tag
, "head-ltitle");
310 print_otag(h
, TAG_TD
, 1, &tag
);
311 print_text(h
, title
);
314 PAIR_CLASS_INIT(&tag
, "head-vol");
315 print_otag(h
, TAG_TD
, 1, &tag
);
316 if (NULL
!= man
->vol
)
317 print_text(h
, man
->vol
);
320 PAIR_CLASS_INIT(&tag
, "head-rtitle");
321 print_otag(h
, TAG_TD
, 1, &tag
);
322 print_text(h
, title
);
328 man_root_post(MAN_ARGS
)
333 PAIR_CLASS_INIT(&tag
, "foot");
334 t
= print_otag(h
, TAG_TABLE
, 1, &tag
);
336 tt
= print_otag(h
, TAG_TR
, 0, NULL
);
338 PAIR_CLASS_INIT(&tag
, "foot-date");
339 print_otag(h
, TAG_TD
, 1, &tag
);
342 print_text(h
, man
->date
);
345 PAIR_CLASS_INIT(&tag
, "foot-os");
346 print_otag(h
, TAG_TD
, 1, &tag
);
349 print_text(h
, man
->source
);
360 SCALE_VS_INIT(&su
, 1);
362 if (MAN_sp
== n
->tok
) {
363 if (NULL
!= (n
= n
->child
))
364 if ( ! a2roffsu(n
->string
, &su
, SCALE_VS
))
365 SCALE_VS_INIT(&su
, atoi(n
->string
));
370 bufcat_su(h
, "height", &su
);
371 PAIR_STYLE_INIT(&tag
, h
);
372 print_otag(h
, TAG_DIV
, 1, &tag
);
374 /* So the div isn't empty: */
375 print_text(h
, "\\~");
385 if (MAN_BLOCK
== n
->type
) {
386 mh
->fl
&= ~MANH_LITERAL
;
387 PAIR_CLASS_INIT(&tag
, "section");
388 print_otag(h
, TAG_DIV
, 1, &tag
);
390 } else if (MAN_BODY
== n
->type
)
393 print_otag(h
, TAG_H1
, 0, NULL
);
398 man_alt_pre(MAN_ARGS
)
400 const struct man_node
*nn
;
405 if ((savelit
= mh
->fl
& MANH_LITERAL
))
406 print_otag(h
, TAG_BR
, 0, NULL
);
408 mh
->fl
&= ~MANH_LITERAL
;
410 for (i
= 0, nn
= n
->child
; nn
; nn
= nn
->next
, i
++) {
414 fp
= i
% 2 ? TAG_I
: TAG_B
;
417 fp
= i
% 2 ? TAG_B
: TAG_I
;
420 fp
= i
% 2 ? TAG_I
: TAG_MAX
;
423 fp
= i
% 2 ? TAG_MAX
: TAG_I
;
426 fp
= i
% 2 ? TAG_MAX
: TAG_B
;
429 fp
= i
% 2 ? TAG_B
: TAG_MAX
;
437 h
->flags
|= HTML_NOSPACE
;
440 t
= print_otag(h
, fp
, 0, NULL
);
442 print_man_node(man
, nn
, mh
, h
);
449 mh
->fl
|= MANH_LITERAL
;
458 print_otag(h
, TAG_SMALL
, 0, NULL
);
459 if (MAN_SB
== n
->tok
)
460 print_otag(h
, TAG_B
, 0, NULL
);
469 if (MAN_BLOCK
== n
->type
) {
470 mh
->fl
&= ~MANH_LITERAL
;
471 PAIR_CLASS_INIT(&tag
, "subsection");
472 print_otag(h
, TAG_DIV
, 1, &tag
);
474 } else if (MAN_BODY
== n
->type
)
477 print_otag(h
, TAG_H2
, 0, NULL
);
485 if (MAN_HEAD
== n
->type
)
487 else if (MAN_BLOCK
== n
->type
)
496 const struct man_node
*nn
;
498 if (MAN_BODY
== n
->type
) {
499 print_otag(h
, TAG_DD
, 0, NULL
);
501 } else if (MAN_HEAD
!= n
->type
) {
502 print_otag(h
, TAG_DL
, 0, NULL
);
506 /* FIXME: width specification. */
508 print_otag(h
, TAG_DT
, 0, NULL
);
510 /* For IP, only print the first header element. */
512 if (MAN_IP
== n
->tok
&& n
->child
)
513 print_man_node(man
, n
->child
, mh
, h
);
515 /* For TP, only print next-line header elements. */
517 if (MAN_TP
== n
->tok
) {
519 while (NULL
!= nn
&& 0 == (MAN_LINE
& nn
->flags
))
522 print_man_node(man
, nn
, mh
, h
);
533 struct htmlpair tag
[2];
535 const struct man_node
*np
;
537 if (MAN_HEAD
== n
->type
)
539 else if (MAN_BLOCK
!= n
->type
)
544 if (NULL
== np
|| ! a2width(np
, &su
))
545 SCALE_HS_INIT(&su
, INDENT
);
550 bufcat_su(h
, "margin-left", &su
);
551 su
.scale
= -su
.scale
;
552 bufcat_su(h
, "text-indent", &su
);
553 PAIR_STYLE_INIT(&tag
[0], h
);
554 PAIR_CLASS_INIT(&tag
[1], "spacer");
555 print_otag(h
, TAG_DIV
, 2, tag
);
566 h
->flags
|= HTML_NOSPACE
;
567 PAIR_CLASS_INIT(&tag
, "opt");
568 tt
= print_otag(h
, TAG_SPAN
, 1, &tag
);
570 if (NULL
!= (n
= n
->child
)) {
571 print_otag(h
, TAG_B
, 0, NULL
);
572 print_text(h
, n
->string
);
577 if (NULL
!= n
&& NULL
!= n
->next
) {
578 print_otag(h
, TAG_I
, 0, NULL
);
579 print_text(h
, n
->next
->string
);
583 h
->flags
|= HTML_NOSPACE
;
592 print_otag(h
, TAG_B
, 0, NULL
);
600 print_otag(h
, TAG_I
, 0, NULL
);
605 man_literal_pre(MAN_ARGS
)
608 if (MAN_fi
== n
->tok
|| MAN_EE
== n
->tok
) {
609 print_otag(h
, TAG_BR
, 0, NULL
);
610 mh
->fl
&= ~MANH_LITERAL
;
612 mh
->fl
|= MANH_LITERAL
;
621 print_otag(h
, TAG_BR
, 0, NULL
);
626 man_ign_pre(MAN_ARGS
)
638 if (MAN_HEAD
== n
->type
)
640 else if (MAN_BODY
== n
->type
)
643 SCALE_HS_INIT(&su
, INDENT
);
645 a2width(n
->head
->child
, &su
);
648 bufcat_su(h
, "margin-left", &su
);
649 PAIR_STYLE_INIT(&tag
, h
);
650 print_otag(h
, TAG_DIV
, 1, &tag
);
657 struct htmlpair tag
[2];
660 assert(MAN_HEAD
== n
->type
);
662 assert(MAN_TEXT
== n
->child
->type
);
663 PAIR_CLASS_INIT(&tag
[0], "link-ext");
664 PAIR_HREF_INIT(&tag
[1], n
->child
->string
);
665 print_otag(h
, TAG_A
, 2, tag
);
668 assert(MAN_BODY
== n
->next
->type
);
672 print_man_nodelist(man
, n
->child
, mh
, h
);