]>
git.cameronkatri.com Git - mandoc.git/blob - html.c
1 /* $Id: html.c,v 1.271 2020/10/16 17:22:43 schwarze Exp $ */
3 * Copyright (c) 2011-2015, 2017-2020 Ingo Schwarze <schwarze@openbsd.org>
4 * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
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.
18 * Common functions for mandoc(1) HTML formatters.
19 * For use by individual formatters and by the main program.
23 #include <sys/types.h>
36 #include "mandoc_aux.h"
37 #include "mandoc_ohash.h"
48 #define HTML_INPHRASE (1 << 0) /* Can appear in phrasing context. */
49 #define HTML_TOPHRASE (1 << 1) /* Establishes phrasing context. */
50 #define HTML_NOSTACK (1 << 2) /* Does not have an end tag. */
51 #define HTML_NLBEFORE (1 << 3) /* Output line break before opening. */
52 #define HTML_NLBEGIN (1 << 4) /* Output line break after opening. */
53 #define HTML_NLEND (1 << 5) /* Output line break before closing. */
54 #define HTML_NLAFTER (1 << 6) /* Output line break after closing. */
55 #define HTML_NLAROUND (HTML_NLBEFORE | HTML_NLAFTER)
56 #define HTML_NLINSIDE (HTML_NLBEGIN | HTML_NLEND)
57 #define HTML_NLALL (HTML_NLAROUND | HTML_NLINSIDE)
58 #define HTML_INDENT (1 << 7) /* Indent content by two spaces. */
59 #define HTML_NOINDENT (1 << 8) /* Exception: never indent content. */
62 static const struct htmldata htmltags
[TAG_MAX
] = {
64 {"head", HTML_NLALL
| HTML_INDENT
},
65 {"meta", HTML_NOSTACK
| HTML_NLALL
},
66 {"link", HTML_NOSTACK
| HTML_NLALL
},
67 {"style", HTML_NLALL
| HTML_INDENT
},
68 {"title", HTML_NLAROUND
},
70 {"div", HTML_NLAROUND
},
71 {"section", HTML_NLALL
},
72 {"table", HTML_NLALL
| HTML_INDENT
},
73 {"tr", HTML_NLALL
| HTML_INDENT
},
74 {"td", HTML_NLAROUND
},
75 {"li", HTML_NLAROUND
| HTML_INDENT
},
76 {"ul", HTML_NLALL
| HTML_INDENT
},
77 {"ol", HTML_NLALL
| HTML_INDENT
},
78 {"dl", HTML_NLALL
| HTML_INDENT
},
79 {"dt", HTML_NLAROUND
},
80 {"dd", HTML_NLAROUND
| HTML_INDENT
},
81 {"h1", HTML_TOPHRASE
| HTML_NLAROUND
},
82 {"h2", HTML_TOPHRASE
| HTML_NLAROUND
},
83 {"p", HTML_TOPHRASE
| HTML_NLAROUND
| HTML_INDENT
},
84 {"pre", HTML_TOPHRASE
| HTML_NLAROUND
| HTML_NOINDENT
},
85 {"a", HTML_INPHRASE
| HTML_TOPHRASE
},
86 {"b", HTML_INPHRASE
| HTML_TOPHRASE
},
87 {"cite", HTML_INPHRASE
| HTML_TOPHRASE
},
88 {"code", HTML_INPHRASE
| HTML_TOPHRASE
},
89 {"i", HTML_INPHRASE
| HTML_TOPHRASE
},
90 {"small", HTML_INPHRASE
| HTML_TOPHRASE
},
91 {"span", HTML_INPHRASE
| HTML_TOPHRASE
},
92 {"var", HTML_INPHRASE
| HTML_TOPHRASE
},
93 {"br", HTML_INPHRASE
| HTML_NOSTACK
| HTML_NLALL
},
94 {"mark", HTML_INPHRASE
},
95 {"math", HTML_INPHRASE
| HTML_NLALL
| HTML_INDENT
},
114 /* Avoid duplicate HTML id= attributes. */
117 int ord
; /* Ordinal number of the latest occurrence. */
118 char id
[]; /* The id= attribute without any ordinal suffix. */
120 static struct ohash id_unique
;
122 static void html_reset_internal(struct html
*);
123 static void print_byte(struct html
*, char);
124 static void print_endword(struct html
*);
125 static void print_indent(struct html
*);
126 static void print_word(struct html
*, const char *);
128 static void print_ctag(struct html
*, struct tag
*);
129 static int print_escape(struct html
*, char);
130 static int print_encode(struct html
*, const char *, const char *, int);
131 static void print_href(struct html
*, const char *, const char *, int);
132 static void print_metaf(struct html
*);
136 html_alloc(const struct manoutput
*outopts
)
140 h
= mandoc_calloc(1, sizeof(struct html
));
143 h
->style
= outopts
->style
;
144 if ((h
->base_man1
= outopts
->man
) == NULL
)
146 else if ((h
->base_man2
= strchr(h
->base_man1
, ';')) != NULL
)
147 *h
->base_man2
++ = '\0';
148 h
->base_includes
= outopts
->includes
;
149 if (outopts
->fragment
)
150 h
->oflags
|= HTML_FRAGMENT
;
152 h
->oflags
|= HTML_TOC
;
154 mandoc_ohash_init(&id_unique
, 4, offsetof(struct id_entry
, id
));
160 html_reset_internal(struct html
*h
)
163 struct id_entry
*entry
;
166 while ((tag
= h
->tag
) != NULL
) {
170 entry
= ohash_first(&id_unique
, &slot
);
171 while (entry
!= NULL
) {
173 entry
= ohash_next(&id_unique
, &slot
);
175 ohash_delete(&id_unique
);
181 html_reset_internal(p
);
182 mandoc_ohash_init(&id_unique
, 4, offsetof(struct id_entry
, id
));
188 html_reset_internal(p
);
193 print_gen_head(struct html
*h
)
197 print_otag(h
, TAG_META
, "?", "charset", "utf-8");
198 if (h
->style
!= NULL
) {
199 print_otag(h
, TAG_LINK
, "?h??", "rel", "stylesheet",
200 h
->style
, "type", "text/css", "media", "all");
205 * Print a minimal embedded style sheet.
208 t
= print_otag(h
, TAG_STYLE
, "");
209 print_text(h
, "table.head, table.foot { width: 100%; }");
211 print_text(h
, "td.head-rtitle, td.foot-os { text-align: right; }");
213 print_text(h
, "td.head-vol { text-align: center; }");
215 print_text(h
, ".Nd, .Bf, .Op { display: inline; }");
217 print_text(h
, ".Pa, .Ad { font-style: italic; }");
219 print_text(h
, ".Ms { font-weight: bold; }");
221 print_text(h
, ".Bl-diag ");
223 print_text(h
, " dt { font-weight: bold; }");
225 print_text(h
, "code.Nm, .Fl, .Cm, .Ic, code.In, .Fd, .Fn, .Cd "
226 "{ font-weight: bold; font-family: inherit; }");
231 html_setfont(struct html
*h
, enum mandoc_esc font
)
234 case ESCAPE_FONTPREV
:
237 case ESCAPE_FONTITALIC
:
238 case ESCAPE_FONTBOLD
:
241 case ESCAPE_FONTROMAN
:
244 font
= ESCAPE_FONTROMAN
;
255 print_metaf(struct html
*h
)
258 print_tagq(h
, h
->metaf
);
262 case ESCAPE_FONTITALIC
:
263 h
->metaf
= print_otag(h
, TAG_I
, "");
265 case ESCAPE_FONTBOLD
:
266 h
->metaf
= print_otag(h
, TAG_B
, "");
269 h
->metaf
= print_otag(h
, TAG_B
, "");
270 print_otag(h
, TAG_I
, "");
273 h
->metaf
= print_otag(h
, TAG_SPAN
, "c", "Li");
281 html_close_paragraph(struct html
*h
)
283 struct tag
*this, *next
;
289 flags
= htmltags
[this->tag
].flags
;
290 if (flags
& (HTML_INPHRASE
| HTML_TOPHRASE
))
292 if ((flags
& HTML_INPHRASE
) == 0)
299 * ROFF_nf switches to no-fill mode, ROFF_fi to fill mode.
300 * TOKEN_NONE does not switch. The old mode is returned.
303 html_fillmode(struct html
*h
, enum roff_tok want
)
308 for (t
= h
->tag
; t
!= NULL
; t
= t
->next
)
309 if (t
->tag
== TAG_PRE
)
312 had
= t
== NULL
? ROFF_fi
: ROFF_nf
;
320 html_close_paragraph(h
);
321 print_otag(h
, TAG_PRE
, "");
333 * Allocate a string to be used for the "id=" attribute of an HTML
334 * element and/or as a segment identifier for a URI in an <a> element.
335 * The function may fail and return NULL if the node lacks text data
336 * to create the attribute from.
337 * The caller is responsible for free(3)ing the returned string.
339 * If the "unique" argument is non-zero, the "id_unique" ohash table
340 * is used for de-duplication. If the "unique" argument is 1,
341 * it is the first time the function is called for this tag and
342 * location, so if an ordinal suffix is needed, it is incremented.
343 * If the "unique" argument is 2, it is the second time the function
344 * is called for this tag and location, so the ordinal suffix
348 html_make_id(const struct roff_node
*n
, int unique
)
350 const struct roff_node
*nch
;
351 struct id_entry
*entry
;
357 buf
= mandoc_strdup(n
->tag
);
365 for (nch
= n
->child
; nch
!= NULL
; nch
= nch
->next
)
366 if (nch
->type
!= ROFFT_TEXT
)
374 if (n
->child
== NULL
|| n
->child
->type
!= ROFFT_TEXT
)
376 buf
= mandoc_strdup(n
->child
->string
);
382 * In ID attributes, only use ASCII characters that are
383 * permitted in URL-fragment strings according to the
385 * https://url.spec.whatwg.org/#url-fragment-string
386 * In addition, reserve '~' for ordinal suffixes.
389 for (cp
= buf
; *cp
!= '\0'; cp
++)
390 if (isalnum((unsigned char)*cp
) == 0 &&
391 strchr("!$&'()*+,-./:;=?@_", *cp
) == NULL
)
397 /* Avoid duplicate HTML id= attributes. */
399 slot
= ohash_qlookup(&id_unique
, buf
);
400 if ((entry
= ohash_find(&id_unique
, slot
)) == NULL
) {
401 len
= strlen(buf
) + 1;
402 entry
= mandoc_malloc(sizeof(*entry
) + len
);
404 memcpy(entry
->id
, buf
, len
);
405 ohash_insert(&id_unique
, slot
, entry
);
406 } else if (unique
== 1)
409 if (entry
->ord
> 1) {
411 mandoc_asprintf(&buf
, "%s~%d", cp
, entry
->ord
);
418 print_escape(struct html
*h
, char c
)
423 print_word(h
, "<");
426 print_word(h
, ">");
429 print_word(h
, "&");
432 print_word(h
, """);
435 print_word(h
, " ");
449 print_encode(struct html
*h
, const char *p
, const char *pend
, int norecurse
)
454 int c
, len
, breakline
, nospace
;
456 static const char rejs
[10] = { ' ', '\\', '<', '>', '&', '"',
457 ASCII_NBRSP
, ASCII_HYPH
, ASCII_BREAK
, '\0' };
460 pend
= strchr(p
, '\0');
466 if (HTML_SKIPCHAR
& h
->flags
&& '\\' != *p
) {
467 h
->flags
&= ~HTML_SKIPCHAR
;
472 for (sz
= strcspn(p
, rejs
); sz
-- && p
< pend
; p
++)
476 (p
>= pend
|| *p
== ' ' || *p
== ASCII_NBRSP
)) {
477 print_otag(h
, TAG_BR
, "");
479 while (p
< pend
&& (*p
== ' ' || *p
== ASCII_NBRSP
))
493 if (print_escape(h
, *p
++))
496 esc
= mandoc_escape(&p
, &seq
, &len
);
499 case ESCAPE_FONTPREV
:
500 case ESCAPE_FONTBOLD
:
501 case ESCAPE_FONTITALIC
:
504 case ESCAPE_FONTROMAN
:
505 if (0 == norecurse
) {
506 h
->flags
|= HTML_NOSPACE
;
507 if (html_setfont(h
, esc
))
509 h
->flags
&= ~HTML_NOSPACE
;
512 case ESCAPE_SKIPCHAR
:
513 h
->flags
|= HTML_SKIPCHAR
;
521 if (h
->flags
& HTML_SKIPCHAR
) {
522 h
->flags
&= ~HTML_SKIPCHAR
;
528 /* Skip past "u" header. */
529 c
= mchars_num2uc(seq
+ 1, len
- 1);
531 case ESCAPE_NUMBERED
:
532 c
= mchars_num2char(seq
, len
);
537 c
= mchars_spec2cp(seq
, len
);
545 print_word(h
, "html");
554 case ESCAPE_OVERSTRIKE
:
562 if ((c
< 0x20 && c
!= 0x09) ||
563 (c
> 0x7E && c
< 0xA0))
566 (void)snprintf(numbuf
, sizeof(numbuf
), "&#x%.4X;", c
);
567 print_word(h
, numbuf
);
568 } else if (print_escape(h
, c
) == 0)
576 print_href(struct html
*h
, const char *name
, const char *sec
, int man
)
584 if (h
->base_man2
!= NULL
) {
585 mandoc_asprintf(&filename
, "%s.%s", name
, sec
);
586 if (stat(filename
, &sb
) == -1)
591 pp
= h
->base_includes
;
593 while ((p
= strchr(pp
, '%')) != NULL
) {
594 print_encode(h
, pp
, p
, 1);
595 if (man
&& p
[1] == 'S') {
599 print_encode(h
, sec
, NULL
, 1);
600 } else if ((man
&& p
[1] == 'N') ||
601 (man
== 0 && p
[1] == 'I'))
602 print_encode(h
, name
, NULL
, 1);
604 print_encode(h
, p
, p
+ 2, 1);
608 print_encode(h
, pp
, NULL
, 1);
612 print_otag(struct html
*h
, enum htmltag tag
, const char *fmt
, ...)
618 int style_written
, tflags
;
620 tflags
= htmltags
[tag
].flags
;
622 /* Flow content is not allowed in phrasing context. */
624 if ((tflags
& HTML_INPHRASE
) == 0) {
625 for (t
= h
->tag
; t
!= NULL
; t
= t
->next
) {
628 assert((htmltags
[t
->tag
].flags
& HTML_TOPHRASE
) == 0);
633 * Always wrap phrasing elements in a paragraph
634 * unless already contained in some flow container;
635 * never put them directly into a section.
638 } else if (tflags
& HTML_TOPHRASE
&& h
->tag
->tag
== TAG_SECTION
)
639 print_otag(h
, TAG_P
, "c", "Pp");
641 /* Push this tag onto the stack of open scopes. */
643 if ((tflags
& HTML_NOSTACK
) == 0) {
644 t
= mandoc_malloc(sizeof(struct tag
));
653 if (tflags
& HTML_NLBEFORE
)
657 else if ((h
->flags
& HTML_NOSPACE
) == 0) {
658 if (h
->flags
& HTML_KEEP
)
659 print_word(h
, " ");
661 if (h
->flags
& HTML_PREKEEP
)
662 h
->flags
|= HTML_KEEP
;
667 if ( ! (h
->flags
& HTML_NONOSPACE
))
668 h
->flags
&= ~HTML_NOSPACE
;
670 h
->flags
|= HTML_NOSPACE
;
672 /* Print out the tag name and attributes. */
675 print_word(h
, htmltags
[tag
].name
);
679 while (*fmt
!= '\0' && *fmt
!= 's') {
681 /* Parse attributes and arguments. */
683 arg1
= va_arg(ap
, char *);
697 arg1
= va_arg(ap
, char *);
703 arg2
= va_arg(ap
, char *);
707 /* Print the attributes. */
715 print_href(h
, arg1
, NULL
, 0);
719 print_href(h
, arg1
, arg2
, 1);
724 print_encode(h
, arg1
, NULL
, 1);
728 print_encode(h
, arg1
, NULL
, 1);
735 while (*fmt
++ == 's') {
736 arg1
= va_arg(ap
, char *);
737 arg2
= va_arg(ap
, char *);
741 if (style_written
== 0) {
742 print_word(h
, "style=\"");
756 /* Accommodate for "well-formed" singleton escaping. */
758 if (htmltags
[tag
].flags
& HTML_NOSTACK
)
763 if (tflags
& HTML_NLBEGIN
)
766 h
->flags
|= HTML_NOSPACE
;
768 if (tflags
& HTML_INDENT
)
770 if (tflags
& HTML_NOINDENT
)
777 * Print an element with an optional "id=" attribute.
778 * If the element has phrasing content and an "id=" attribute,
779 * also add a permalink: outside if it can be in phrasing context,
783 print_otag_id(struct html
*h
, enum htmltag elemtype
, const char *cattr
,
786 struct roff_node
*nch
;
792 if (n
->flags
& NODE_ID
)
793 id
= html_make_id(n
, 1);
794 if (n
->flags
& NODE_HREF
)
795 href
= id
== NULL
? html_make_id(n
, 2) : id
;
796 if (href
!= NULL
&& htmltags
[elemtype
].flags
& HTML_INPHRASE
)
797 ret
= print_otag(h
, TAG_A
, "chR", "permalink", href
);
798 t
= print_otag(h
, elemtype
, "ci", cattr
, id
);
801 if (href
!= NULL
&& (nch
= n
->child
) != NULL
) {
802 /* man(7) is safe, it tags phrasing content only. */
803 if (n
->tok
> MDOC_MAX
||
804 htmltags
[elemtype
].flags
& HTML_TOPHRASE
)
806 else /* For mdoc(7), beware of nested blocks. */
807 while (nch
!= NULL
&& nch
->type
== ROFFT_TEXT
)
810 print_otag(h
, TAG_A
, "chR", "permalink", href
);
820 print_ctag(struct html
*h
, struct tag
*tag
)
824 if (tag
->closed
== 0) {
831 tflags
= htmltags
[tag
->tag
].flags
;
832 if (tflags
& HTML_INDENT
)
834 if (tflags
& HTML_NOINDENT
)
836 if (tflags
& HTML_NLEND
)
841 print_word(h
, htmltags
[tag
->tag
].name
);
843 if (tflags
& HTML_NLAFTER
)
846 if (tag
->refcnt
== 0) {
853 print_gen_decls(struct html
*h
)
855 print_word(h
, "<!DOCTYPE html>");
860 print_gen_comment(struct html
*h
, struct roff_node
*n
)
864 print_word(h
, "<!-- This is an automatically generated file."
868 while (n
!= NULL
&& n
->type
== ROFFT_COMMENT
) {
869 if (strstr(n
->string
, "-->") == NULL
&&
870 (wantblank
|| *n
->string
!= '\0')) {
873 print_word(h
, n
->string
);
874 wantblank
= *n
->string
!= '\0';
880 print_word(h
, " -->");
886 print_text(struct html
*h
, const char *word
)
888 print_tagged_text(h
, word
, NULL
);
892 print_tagged_text(struct html
*h
, const char *word
, struct roff_node
*n
)
898 * Always wrap text in a paragraph unless already contained in
899 * some flow container; never put it directly into a section.
902 if (h
->tag
->tag
== TAG_SECTION
)
903 print_otag(h
, TAG_P
, "c", "Pp");
905 /* Output whitespace before this text? */
907 if (h
->col
&& (h
->flags
& HTML_NOSPACE
) == 0) {
908 if ( ! (HTML_KEEP
& h
->flags
)) {
909 if (HTML_PREKEEP
& h
->flags
)
910 h
->flags
|= HTML_KEEP
;
913 print_word(h
, " ");
917 * Optionally switch fonts, optionally write a permalink, then
918 * print the text, optionally surrounded by HTML whitespace.
921 assert(h
->metaf
== NULL
);
925 if (n
!= NULL
&& (href
= html_make_id(n
, 2)) != NULL
) {
926 t
= print_otag(h
, TAG_A
, "chR", "permalink", href
);
931 if ( ! print_encode(h
, word
, NULL
, 0)) {
932 if ( ! (h
->flags
& HTML_NONOSPACE
))
933 h
->flags
&= ~HTML_NOSPACE
;
934 h
->flags
&= ~HTML_NONEWLINE
;
936 h
->flags
|= HTML_NOSPACE
| HTML_NONEWLINE
;
938 if (h
->metaf
!= NULL
) {
939 print_tagq(h
, h
->metaf
);
941 } else if (t
!= NULL
)
944 h
->flags
&= ~HTML_IGNDELIM
;
948 print_tagq(struct html
*h
, const struct tag
*until
)
950 struct tag
*this, *next
;
952 for (this = h
->tag
; this != NULL
; this = next
) {
953 next
= this == until
? NULL
: this->next
;
959 * Close out all open elements up to but excluding suntil.
960 * Note that a paragraph just inside stays open together with it
961 * because paragraphs include subsequent phrasing content.
964 print_stagq(struct html
*h
, const struct tag
*suntil
)
966 struct tag
*this, *next
;
968 for (this = h
->tag
; this != NULL
; this = next
) {
970 if (this == suntil
|| (next
== suntil
&&
971 (this->tag
== TAG_P
|| this->tag
== TAG_PRE
)))
978 /***********************************************************************
979 * Low level output functions.
980 * They implement line breaking using a short static buffer.
981 ***********************************************************************/
984 * Buffer one HTML output byte.
985 * If the buffer is full, flush and deactivate it and start a new line.
986 * If the buffer is inactive, print directly.
989 print_byte(struct html
*h
, char c
)
991 if ((h
->flags
& HTML_BUFFER
) == 0) {
997 if (h
->col
+ h
->bufcol
< sizeof(h
->buf
)) {
998 h
->buf
[h
->bufcol
++] = c
;
1007 fwrite(h
->buf
, h
->bufcol
, 1, stdout
);
1009 h
->col
= (h
->indent
+ 1) * 2 + h
->bufcol
+ 1;
1011 h
->flags
&= ~HTML_BUFFER
;
1015 * If something was printed on the current output line, end it.
1016 * Not to be called right after print_indent().
1019 print_endline(struct html
*h
)
1026 fwrite(h
->buf
, h
->bufcol
, 1, stdout
);
1031 h
->flags
|= HTML_NOSPACE
;
1032 h
->flags
&= ~HTML_BUFFER
;
1036 * Flush the HTML output buffer.
1037 * If it is inactive, activate it.
1040 print_endword(struct html
*h
)
1047 if ((h
->flags
& HTML_BUFFER
) == 0) {
1049 h
->flags
|= HTML_BUFFER
;
1050 } else if (h
->bufcol
) {
1052 fwrite(h
->buf
, h
->bufcol
, 1, stdout
);
1053 h
->col
+= h
->bufcol
+ 1;
1059 * If at the beginning of a new output line,
1060 * perform indentation and mark the line as containing output.
1061 * Make sure to really produce some output right afterwards,
1062 * but do not use print_otag() for producing it.
1065 print_indent(struct html
*h
)
1069 if (h
->col
|| h
->noindent
)
1072 h
->col
= h
->indent
* 2;
1073 for (i
= 0; i
< h
->col
; i
++)
1078 * Print or buffer some characters
1079 * depending on the current HTML output buffer state.
1082 print_word(struct html
*h
, const char *cp
)
1085 print_byte(h
, *cp
++);