]>
git.cameronkatri.com Git - mandoc.git/blob - html.c
1 /* $Id: html.c,v 1.261 2019/09/05 13:35:04 schwarze Exp $ */
3 * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2011-2015, 2017-2019 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 AUTHORS DISCLAIM ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS 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>
33 #include "mandoc_aux.h"
34 #include "mandoc_ohash.h"
45 #define HTML_INPHRASE (1 << 0) /* Can appear in phrasing context. */
46 #define HTML_TOPHRASE (1 << 1) /* Establishes phrasing context. */
47 #define HTML_NOSTACK (1 << 2) /* Does not have an end tag. */
48 #define HTML_NLBEFORE (1 << 3) /* Output line break before opening. */
49 #define HTML_NLBEGIN (1 << 4) /* Output line break after opening. */
50 #define HTML_NLEND (1 << 5) /* Output line break before closing. */
51 #define HTML_NLAFTER (1 << 6) /* Output line break after closing. */
52 #define HTML_NLAROUND (HTML_NLBEFORE | HTML_NLAFTER)
53 #define HTML_NLINSIDE (HTML_NLBEGIN | HTML_NLEND)
54 #define HTML_NLALL (HTML_NLAROUND | HTML_NLINSIDE)
55 #define HTML_INDENT (1 << 7) /* Indent content by two spaces. */
56 #define HTML_NOINDENT (1 << 8) /* Exception: never indent content. */
59 static const struct htmldata htmltags
[TAG_MAX
] = {
61 {"head", HTML_NLALL
| HTML_INDENT
},
62 {"meta", HTML_NOSTACK
| HTML_NLALL
},
63 {"link", HTML_NOSTACK
| HTML_NLALL
},
64 {"style", HTML_NLALL
| HTML_INDENT
},
65 {"title", HTML_NLAROUND
},
67 {"div", HTML_NLAROUND
},
68 {"section", HTML_NLALL
},
69 {"table", HTML_NLALL
| HTML_INDENT
},
70 {"tr", HTML_NLALL
| HTML_INDENT
},
71 {"td", HTML_NLAROUND
},
72 {"li", HTML_NLAROUND
| HTML_INDENT
},
73 {"ul", HTML_NLALL
| HTML_INDENT
},
74 {"ol", HTML_NLALL
| HTML_INDENT
},
75 {"dl", HTML_NLALL
| HTML_INDENT
},
76 {"dt", HTML_NLAROUND
},
77 {"dd", HTML_NLAROUND
| HTML_INDENT
},
78 {"h1", HTML_TOPHRASE
| HTML_NLAROUND
},
79 {"h2", HTML_TOPHRASE
| HTML_NLAROUND
},
80 {"p", HTML_TOPHRASE
| HTML_NLAROUND
| HTML_INDENT
},
81 {"pre", HTML_TOPHRASE
| HTML_NLALL
| HTML_NOINDENT
},
82 {"a", HTML_INPHRASE
| HTML_TOPHRASE
},
83 {"b", HTML_INPHRASE
| HTML_TOPHRASE
},
84 {"cite", HTML_INPHRASE
| HTML_TOPHRASE
},
85 {"code", HTML_INPHRASE
| HTML_TOPHRASE
},
86 {"i", HTML_INPHRASE
| HTML_TOPHRASE
},
87 {"small", HTML_INPHRASE
| HTML_TOPHRASE
},
88 {"span", HTML_INPHRASE
| HTML_TOPHRASE
},
89 {"var", HTML_INPHRASE
| HTML_TOPHRASE
},
90 {"br", HTML_INPHRASE
| HTML_NOSTACK
| HTML_NLALL
},
91 {"math", HTML_INPHRASE
| HTML_NLALL
| HTML_INDENT
},
110 /* Avoid duplicate HTML id= attributes. */
111 static struct ohash id_unique
;
113 static void html_reset_internal(struct html
*);
114 static void print_byte(struct html
*, char);
115 static void print_endword(struct html
*);
116 static void print_indent(struct html
*);
117 static void print_word(struct html
*, const char *);
119 static void print_ctag(struct html
*, struct tag
*);
120 static int print_escape(struct html
*, char);
121 static int print_encode(struct html
*, const char *, const char *, int);
122 static void print_href(struct html
*, const char *, const char *, int);
123 static void print_metaf(struct html
*);
127 html_alloc(const struct manoutput
*outopts
)
131 h
= mandoc_calloc(1, sizeof(struct html
));
134 h
->style
= outopts
->style
;
135 if ((h
->base_man1
= outopts
->man
) == NULL
)
137 else if ((h
->base_man2
= strchr(h
->base_man1
, ';')) != NULL
)
138 *h
->base_man2
++ = '\0';
139 h
->base_includes
= outopts
->includes
;
140 if (outopts
->fragment
)
141 h
->oflags
|= HTML_FRAGMENT
;
143 h
->oflags
|= HTML_TOC
;
145 mandoc_ohash_init(&id_unique
, 4, 0);
151 html_reset_internal(struct html
*h
)
157 while ((tag
= h
->tag
) != NULL
) {
161 cp
= ohash_first(&id_unique
, &slot
);
164 cp
= ohash_next(&id_unique
, &slot
);
166 ohash_delete(&id_unique
);
172 html_reset_internal(p
);
173 mandoc_ohash_init(&id_unique
, 4, 0);
179 html_reset_internal(p
);
184 print_gen_head(struct html
*h
)
188 print_otag(h
, TAG_META
, "?", "charset", "utf-8");
189 if (h
->style
!= NULL
) {
190 print_otag(h
, TAG_LINK
, "?h??", "rel", "stylesheet",
191 h
->style
, "type", "text/css", "media", "all");
196 * Print a minimal embedded style sheet.
199 t
= print_otag(h
, TAG_STYLE
, "");
200 print_text(h
, "table.head, table.foot { width: 100%; }");
202 print_text(h
, "td.head-rtitle, td.foot-os { text-align: right; }");
204 print_text(h
, "td.head-vol { text-align: center; }");
206 print_text(h
, ".Nd, .Bf, .Op { display: inline; }");
208 print_text(h
, ".Pa, .Ad { font-style: italic; }");
210 print_text(h
, ".Ms { font-weight: bold; }");
212 print_text(h
, ".Bl-diag ");
214 print_text(h
, " dt { font-weight: bold; }");
216 print_text(h
, "code.Nm, .Fl, .Cm, .Ic, code.In, .Fd, .Fn, .Cd "
217 "{ font-weight: bold; font-family: inherit; }");
222 html_setfont(struct html
*h
, enum mandoc_esc font
)
225 case ESCAPE_FONTPREV
:
228 case ESCAPE_FONTITALIC
:
229 case ESCAPE_FONTBOLD
:
232 case ESCAPE_FONTROMAN
:
235 font
= ESCAPE_FONTROMAN
;
246 print_metaf(struct html
*h
)
249 print_tagq(h
, h
->metaf
);
253 case ESCAPE_FONTITALIC
:
254 h
->metaf
= print_otag(h
, TAG_I
, "");
256 case ESCAPE_FONTBOLD
:
257 h
->metaf
= print_otag(h
, TAG_B
, "");
260 h
->metaf
= print_otag(h
, TAG_B
, "");
261 print_otag(h
, TAG_I
, "");
264 h
->metaf
= print_otag(h
, TAG_SPAN
, "c", "Li");
272 html_close_paragraph(struct html
*h
)
274 struct tag
*this, *next
;
280 flags
= htmltags
[this->tag
].flags
;
281 if (flags
& (HTML_INPHRASE
| HTML_TOPHRASE
))
283 if ((flags
& HTML_INPHRASE
) == 0)
290 * ROFF_nf switches to no-fill mode, ROFF_fi to fill mode.
291 * TOKEN_NONE does not switch. The old mode is returned.
294 html_fillmode(struct html
*h
, enum roff_tok want
)
299 for (t
= h
->tag
; t
!= NULL
; t
= t
->next
)
300 if (t
->tag
== TAG_PRE
)
303 had
= t
== NULL
? ROFF_fi
: ROFF_nf
;
311 html_close_paragraph(h
);
312 print_otag(h
, TAG_PRE
, "");
324 html_make_id(const struct roff_node
*n
, int unique
)
326 const struct roff_node
*nch
;
327 char *buf
, *bufs
, *cp
;
331 for (nch
= n
->child
; nch
!= NULL
; nch
= nch
->next
)
332 if (nch
->type
!= ROFFT_TEXT
)
341 * In ID attributes, only use ASCII characters that are
342 * permitted in URL-fragment strings according to the
344 * https://url.spec.whatwg.org/#url-fragment-string
347 for (cp
= buf
; *cp
!= '\0'; cp
++)
348 if (isalnum((unsigned char)*cp
) == 0 &&
349 strchr("!$&'()*+,-./:;=?@_~", *cp
) == NULL
)
355 /* Avoid duplicate HTML id= attributes. */
359 slot
= ohash_qlookup(&id_unique
, buf
);
360 cp
= ohash_find(&id_unique
, slot
);
364 if (++suffix
> 127) {
368 mandoc_asprintf(&bufs
, "%s_%d", buf
, suffix
);
369 slot
= ohash_qlookup(&id_unique
, bufs
);
370 cp
= ohash_find(&id_unique
, slot
);
375 ohash_insert(&id_unique
, slot
, buf
);
380 print_escape(struct html
*h
, char c
)
385 print_word(h
, "<");
388 print_word(h
, ">");
391 print_word(h
, "&");
394 print_word(h
, """);
397 print_word(h
, " ");
411 print_encode(struct html
*h
, const char *p
, const char *pend
, int norecurse
)
416 int c
, len
, breakline
, nospace
;
418 static const char rejs
[10] = { ' ', '\\', '<', '>', '&', '"',
419 ASCII_NBRSP
, ASCII_HYPH
, ASCII_BREAK
, '\0' };
422 pend
= strchr(p
, '\0');
428 if (HTML_SKIPCHAR
& h
->flags
&& '\\' != *p
) {
429 h
->flags
&= ~HTML_SKIPCHAR
;
434 for (sz
= strcspn(p
, rejs
); sz
-- && p
< pend
; p
++)
438 (p
>= pend
|| *p
== ' ' || *p
== ASCII_NBRSP
)) {
439 print_otag(h
, TAG_BR
, "");
441 while (p
< pend
&& (*p
== ' ' || *p
== ASCII_NBRSP
))
455 if (print_escape(h
, *p
++))
458 esc
= mandoc_escape(&p
, &seq
, &len
);
461 case ESCAPE_FONTPREV
:
462 case ESCAPE_FONTBOLD
:
463 case ESCAPE_FONTITALIC
:
466 case ESCAPE_FONTROMAN
:
467 if (0 == norecurse
) {
468 h
->flags
|= HTML_NOSPACE
;
469 if (html_setfont(h
, esc
))
471 h
->flags
&= ~HTML_NOSPACE
;
474 case ESCAPE_SKIPCHAR
:
475 h
->flags
|= HTML_SKIPCHAR
;
483 if (h
->flags
& HTML_SKIPCHAR
) {
484 h
->flags
&= ~HTML_SKIPCHAR
;
490 /* Skip past "u" header. */
491 c
= mchars_num2uc(seq
+ 1, len
- 1);
493 case ESCAPE_NUMBERED
:
494 c
= mchars_num2char(seq
, len
);
499 c
= mchars_spec2cp(seq
, len
);
507 print_word(h
, "html");
516 case ESCAPE_OVERSTRIKE
:
524 if ((c
< 0x20 && c
!= 0x09) ||
525 (c
> 0x7E && c
< 0xA0))
528 (void)snprintf(numbuf
, sizeof(numbuf
), "&#x%.4X;", c
);
529 print_word(h
, numbuf
);
530 } else if (print_escape(h
, c
) == 0)
538 print_href(struct html
*h
, const char *name
, const char *sec
, int man
)
546 if (h
->base_man2
!= NULL
) {
547 mandoc_asprintf(&filename
, "%s.%s", name
, sec
);
548 if (stat(filename
, &sb
) == -1)
553 pp
= h
->base_includes
;
555 while ((p
= strchr(pp
, '%')) != NULL
) {
556 print_encode(h
, pp
, p
, 1);
557 if (man
&& p
[1] == 'S') {
561 print_encode(h
, sec
, NULL
, 1);
562 } else if ((man
&& p
[1] == 'N') ||
563 (man
== 0 && p
[1] == 'I'))
564 print_encode(h
, name
, NULL
, 1);
566 print_encode(h
, p
, p
+ 2, 1);
570 print_encode(h
, pp
, NULL
, 1);
574 print_otag(struct html
*h
, enum htmltag tag
, const char *fmt
, ...)
580 int style_written
, tflags
;
582 tflags
= htmltags
[tag
].flags
;
584 /* Flow content is not allowed in phrasing context. */
586 if ((tflags
& HTML_INPHRASE
) == 0) {
587 for (t
= h
->tag
; t
!= NULL
; t
= t
->next
) {
590 assert((htmltags
[t
->tag
].flags
& HTML_TOPHRASE
) == 0);
595 * Always wrap phrasing elements in a paragraph
596 * unless already contained in some flow container;
597 * never put them directly into a section.
600 } else if (tflags
& HTML_TOPHRASE
&& h
->tag
->tag
== TAG_SECTION
)
601 print_otag(h
, TAG_P
, "c", "Pp");
603 /* Push this tag onto the stack of open scopes. */
605 if ((tflags
& HTML_NOSTACK
) == 0) {
606 t
= mandoc_malloc(sizeof(struct tag
));
615 if (tflags
& HTML_NLBEFORE
)
619 else if ((h
->flags
& HTML_NOSPACE
) == 0) {
620 if (h
->flags
& HTML_KEEP
)
621 print_word(h
, " ");
623 if (h
->flags
& HTML_PREKEEP
)
624 h
->flags
|= HTML_KEEP
;
629 if ( ! (h
->flags
& HTML_NONOSPACE
))
630 h
->flags
&= ~HTML_NOSPACE
;
632 h
->flags
|= HTML_NOSPACE
;
634 /* Print out the tag name and attributes. */
637 print_word(h
, htmltags
[tag
].name
);
641 while (*fmt
!= '\0' && *fmt
!= 's') {
643 /* Parse attributes and arguments. */
645 arg1
= va_arg(ap
, char *);
659 arg1
= va_arg(ap
, char *);
665 arg2
= va_arg(ap
, char *);
669 /* Print the attributes. */
677 print_href(h
, arg1
, NULL
, 0);
681 print_href(h
, arg1
, arg2
, 1);
686 print_encode(h
, arg1
, NULL
, 1);
690 print_encode(h
, arg1
, NULL
, 1);
697 while (*fmt
++ == 's') {
698 arg1
= va_arg(ap
, char *);
699 arg2
= va_arg(ap
, char *);
703 if (style_written
== 0) {
704 print_word(h
, "style=\"");
718 /* Accommodate for "well-formed" singleton escaping. */
720 if (htmltags
[tag
].flags
& HTML_NOSTACK
)
725 if (tflags
& HTML_NLBEGIN
)
728 h
->flags
|= HTML_NOSPACE
;
730 if (tflags
& HTML_INDENT
)
732 if (tflags
& HTML_NOINDENT
)
739 print_ctag(struct html
*h
, struct tag
*tag
)
743 if (tag
->closed
== 0) {
750 tflags
= htmltags
[tag
->tag
].flags
;
751 if (tflags
& HTML_INDENT
)
753 if (tflags
& HTML_NOINDENT
)
755 if (tflags
& HTML_NLEND
)
760 print_word(h
, htmltags
[tag
->tag
].name
);
762 if (tflags
& HTML_NLAFTER
)
765 if (tag
->refcnt
== 0) {
772 print_gen_decls(struct html
*h
)
774 print_word(h
, "<!DOCTYPE html>");
779 print_gen_comment(struct html
*h
, struct roff_node
*n
)
783 print_word(h
, "<!-- This is an automatically generated file."
787 while (n
!= NULL
&& n
->type
== ROFFT_COMMENT
) {
788 if (strstr(n
->string
, "-->") == NULL
&&
789 (wantblank
|| *n
->string
!= '\0')) {
792 print_word(h
, n
->string
);
793 wantblank
= *n
->string
!= '\0';
799 print_word(h
, " -->");
805 print_text(struct html
*h
, const char *word
)
808 * Always wrap text in a paragraph unless already contained in
809 * some flow container; never put it directly into a section.
812 if (h
->tag
->tag
== TAG_SECTION
)
813 print_otag(h
, TAG_P
, "c", "Pp");
815 /* Output whitespace before this text? */
817 if (h
->col
&& (h
->flags
& HTML_NOSPACE
) == 0) {
818 if ( ! (HTML_KEEP
& h
->flags
)) {
819 if (HTML_PREKEEP
& h
->flags
)
820 h
->flags
|= HTML_KEEP
;
823 print_word(h
, " ");
827 * Print the text, optionally surrounded by HTML whitespace,
828 * optionally manually switching fonts before and after.
831 assert(h
->metaf
== NULL
);
834 if ( ! print_encode(h
, word
, NULL
, 0)) {
835 if ( ! (h
->flags
& HTML_NONOSPACE
))
836 h
->flags
&= ~HTML_NOSPACE
;
837 h
->flags
&= ~HTML_NONEWLINE
;
839 h
->flags
|= HTML_NOSPACE
| HTML_NONEWLINE
;
841 if (h
->metaf
!= NULL
) {
842 print_tagq(h
, h
->metaf
);
846 h
->flags
&= ~HTML_IGNDELIM
;
850 print_tagq(struct html
*h
, const struct tag
*until
)
852 struct tag
*this, *next
;
854 for (this = h
->tag
; this != NULL
; this = next
) {
855 next
= this == until
? NULL
: this->next
;
861 * Close out all open elements up to but excluding suntil.
862 * Note that a paragraph just inside stays open together with it
863 * because paragraphs include subsequent phrasing content.
866 print_stagq(struct html
*h
, const struct tag
*suntil
)
868 struct tag
*this, *next
;
870 for (this = h
->tag
; this != NULL
; this = next
) {
872 if (this == suntil
|| (next
== suntil
&&
873 (this->tag
== TAG_P
|| this->tag
== TAG_PRE
)))
880 /***********************************************************************
881 * Low level output functions.
882 * They implement line breaking using a short static buffer.
883 ***********************************************************************/
886 * Buffer one HTML output byte.
887 * If the buffer is full, flush and deactivate it and start a new line.
888 * If the buffer is inactive, print directly.
891 print_byte(struct html
*h
, char c
)
893 if ((h
->flags
& HTML_BUFFER
) == 0) {
899 if (h
->col
+ h
->bufcol
< sizeof(h
->buf
)) {
900 h
->buf
[h
->bufcol
++] = c
;
909 fwrite(h
->buf
, h
->bufcol
, 1, stdout
);
911 h
->col
= (h
->indent
+ 1) * 2 + h
->bufcol
+ 1;
913 h
->flags
&= ~HTML_BUFFER
;
917 * If something was printed on the current output line, end it.
918 * Not to be called right after print_indent().
921 print_endline(struct html
*h
)
928 fwrite(h
->buf
, h
->bufcol
, 1, stdout
);
933 h
->flags
|= HTML_NOSPACE
;
934 h
->flags
&= ~HTML_BUFFER
;
938 * Flush the HTML output buffer.
939 * If it is inactive, activate it.
942 print_endword(struct html
*h
)
949 if ((h
->flags
& HTML_BUFFER
) == 0) {
951 h
->flags
|= HTML_BUFFER
;
952 } else if (h
->bufcol
) {
954 fwrite(h
->buf
, h
->bufcol
, 1, stdout
);
955 h
->col
+= h
->bufcol
+ 1;
961 * If at the beginning of a new output line,
962 * perform indentation and mark the line as containing output.
963 * Make sure to really produce some output right afterwards,
964 * but do not use print_otag() for producing it.
967 print_indent(struct html
*h
)
971 if (h
->col
|| h
->noindent
)
974 h
->col
= h
->indent
* 2;
975 for (i
= 0; i
< h
->col
; i
++)
980 * Print or buffer some characters
981 * depending on the current HTML output buffer state.
984 print_word(struct html
*h
, const char *cp
)
987 print_byte(h
, *cp
++);