]>
git.cameronkatri.com Git - mandoc.git/blob - tbl_html.c
1 /* $Id: tbl_html.c,v 1.41 2022/04/23 14:02:17 schwarze Exp $ */
3 * Copyright (c) 2014, 2015, 2017, 2018, 2021, 2022
4 * Ingo Schwarze <schwarze@openbsd.org>
5 * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 #include <sys/types.h>
29 #include "mandoc_dbg.h"
37 static void html_tblopen(struct html
*, const struct tbl_span
*);
38 static size_t html_tbl_len(size_t, void *);
39 static size_t html_tbl_strlen(const char *, void *);
40 static size_t html_tbl_sulen(const struct roffsu
*, void *);
44 html_tbl_len(size_t sz
, void *arg
)
50 html_tbl_strlen(const char *p
, void *arg
)
56 html_tbl_sulen(const struct roffsu
*su
, void *arg
)
62 case SCALE_FS
: /* 2^16 basic units */
63 return su
->scale
* 65536.0 / 24.0;
64 case SCALE_IN
: /* 10 characters per inch */
65 return su
->scale
* 10.0;
66 case SCALE_CM
: /* 2.54 cm per inch */
67 return su
->scale
* 10.0 / 2.54;
68 case SCALE_PC
: /* 6 pica per inch */
70 return su
->scale
* 10.0 / 6.0;
74 case SCALE_PT
: /* 12 points per pica */
75 return su
->scale
* 10.0 / 6.0 / 12.0;
76 case SCALE_BU
: /* 24 basic units per character */
77 return su
->scale
/ 24.0;
78 case SCALE_MM
: /* 1/1000 inch */
79 return su
->scale
/ 100.0;
86 html_tblopen(struct html
*h
, const struct tbl_span
*sp
)
88 html_close_paragraph(h
);
89 if (h
->tbl
.cols
== NULL
) {
90 h
->tbl
.len
= html_tbl_len
;
91 h
->tbl
.slen
= html_tbl_strlen
;
92 h
->tbl
.sulen
= html_tbl_sulen
;
93 tblcalc(&h
->tbl
, sp
, 0, 0);
95 assert(NULL
== h
->tblt
);
96 h
->tblt
= print_otag(h
, TAG_TABLE
, "c?ss", "tbl",
98 sp
->opts
->opts
& TBL_OPT_ALLBOX
? "1" : NULL
,
100 sp
->opts
->opts
& TBL_OPT_DBOX
? "double" :
101 sp
->opts
->opts
& TBL_OPT_BOX
? "solid" : NULL
,
103 sp
->pos
== TBL_SPAN_DHORIZ
? "double" :
104 sp
->pos
== TBL_SPAN_HORIZ
? "solid" : NULL
);
108 print_tblclose(struct html
*h
)
112 print_tagq(h
, h
->tblt
);
117 print_tbl(struct html
*h
, const struct tbl_span
*sp
)
119 const struct tbl_dat
*dp
;
120 const struct tbl_cell
*cp
;
121 const struct tbl_span
*psp
;
122 const struct roffcol
*col
;
124 const char *hspans
, *vspans
, *halign
, *valign
;
125 const char *bborder
, *lborder
, *rborder
;
127 char hbuf
[4], vbuf
[4];
129 enum mandoc_esc save_font
;
136 * Horizontal lines spanning the whole table
137 * are handled by previous or following table rows.
140 if (sp
->pos
!= TBL_SPAN_DATA
)
143 /* Inhibit printing of spaces: we do padding ourselves. */
145 h
->flags
|= HTML_NONOSPACE
;
146 h
->flags
|= HTML_NOSPACE
;
148 /* Draw a vertical line left of this row? */
150 switch (sp
->layout
->vert
) {
162 /* Draw a horizontal line below this row? */
165 if ((psp
= sp
->next
) != NULL
) {
167 case TBL_SPAN_DHORIZ
:
178 tt
= print_otag(h
, TAG_TR
, "ss",
179 "border-left-style", lborder
,
180 "border-bottom-style", bborder
);
182 for (dp
= sp
->first
; dp
!= NULL
; dp
= dp
->next
) {
186 * Do not generate <td> elements for continuations
187 * of spanned cells. Larger <td> elements covering
188 * this space were already generated earlier.
192 if (cp
->pos
== TBL_CELL_SPAN
|| cp
->pos
== TBL_CELL_DOWN
||
193 (dp
->string
!= NULL
&& strcmp(dp
->string
, "\\^") == 0))
196 /* Determine the attribute values. */
198 if (dp
->hspans
> 0) {
199 (void)snprintf(hbuf
, sizeof(hbuf
),
200 "%d", dp
->hspans
+ 1);
204 if (dp
->vspans
> 0) {
205 (void)snprintf(vbuf
, sizeof(vbuf
),
206 "%d", dp
->vspans
+ 1);
212 case TBL_CELL_CENTRE
:
216 case TBL_CELL_NUMBER
:
223 if (cp
->flags
& TBL_CELL_TALIGN
)
225 else if (cp
->flags
& TBL_CELL_BALIGN
)
230 for (i
= dp
->hspans
; i
> 0; i
--)
244 /* Print the element and the attributes. */
246 print_otag(h
, TAG_TD
, "??sss",
247 "colspan", hspans
, "rowspan", vspans
,
248 "vertical-align", valign
,
249 "text-align", halign
,
250 "border-right-style", rborder
);
251 if (dp
->layout
->pos
== TBL_CELL_HORIZ
||
252 dp
->layout
->pos
== TBL_CELL_DHORIZ
||
253 dp
->pos
== TBL_DATA_HORIZ
||
254 dp
->pos
== TBL_DATA_NHORIZ
||
255 dp
->pos
== TBL_DATA_DHORIZ
||
256 dp
->pos
== TBL_DATA_NDHORIZ
)
257 print_otag(h
, TAG_HR
, "");
258 else if (dp
->string
!= NULL
) {
259 save_font
= h
->metac
;
260 html_setfont(h
, dp
->layout
->font
);
261 if (dp
->layout
->pos
== TBL_CELL_LONG
)
262 print_text(h
, "\\[u2003]"); /* em space */
263 print_text(h
, dp
->string
);
264 if (dp
->layout
->pos
== TBL_CELL_NUMBER
) {
265 col
= h
->tbl
.cols
+ dp
->layout
->col
;
266 if (col
->decimal
< col
->nwidth
) {
267 if ((ccp
= strrchr(dp
->string
,
268 sp
->opts
->decimal
)) == NULL
) {
269 /* Punctuation space. */
270 print_text(h
, "\\[u2008]");
271 ccp
= strchr(dp
->string
, '\0');
274 sz
= col
->nwidth
- col
->decimal
;
285 html_setfont(h
, save_font
);
291 h
->flags
&= ~HTML_NONOSPACE
;
294 if (sp
->next
== NULL
) {