]> git.cameronkatri.com Git - mandoc.git/blob - html.h
HTML5-isation: remove more alignments.
[mandoc.git] / html.h
1 /* $Id: html.h,v 1.59 2014/09/27 09:20:03 kristaps Exp $ */
2 /*
3 * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17 #ifndef HTML_H
18 #define HTML_H
19
20 __BEGIN_DECLS
21
22 enum htmltag {
23 TAG_HTML,
24 TAG_HEAD,
25 TAG_BODY,
26 TAG_META,
27 TAG_TITLE,
28 TAG_DIV,
29 TAG_H1,
30 TAG_H2,
31 TAG_SPAN,
32 TAG_LINK,
33 TAG_BR,
34 TAG_A,
35 TAG_TABLE,
36 TAG_TBODY,
37 TAG_COL,
38 TAG_TR,
39 TAG_TD,
40 TAG_LI,
41 TAG_UL,
42 TAG_OL,
43 TAG_DL,
44 TAG_DT,
45 TAG_DD,
46 TAG_BLOCKQUOTE,
47 TAG_P,
48 TAG_PRE,
49 TAG_B,
50 TAG_I,
51 TAG_CODE,
52 TAG_SMALL,
53 TAG_STYLE,
54 TAG_MAX
55 };
56
57 enum htmlattr {
58 ATTR_NAME,
59 ATTR_REL,
60 ATTR_HREF,
61 ATTR_TYPE,
62 ATTR_MEDIA,
63 ATTR_CLASS,
64 ATTR_STYLE,
65 ATTR_WIDTH,
66 ATTR_ID,
67 ATTR_COLSPAN,
68 ATTR_CHARSET,
69 ATTR_MAX
70 };
71
72 enum htmlfont {
73 HTMLFONT_NONE = 0,
74 HTMLFONT_BOLD,
75 HTMLFONT_ITALIC,
76 HTMLFONT_BI,
77 HTMLFONT_MAX
78 };
79
80 struct tag {
81 struct tag *next;
82 enum htmltag tag;
83 };
84
85 struct tagq {
86 struct tag *head;
87 };
88
89 struct htmlpair {
90 enum htmlattr key;
91 const char *val;
92 };
93
94 #define PAIR_INIT(p, t, v) \
95 do { \
96 (p)->key = (t); \
97 (p)->val = (v); \
98 } while (/* CONSTCOND */ 0)
99
100 #define PAIR_ID_INIT(p, v) PAIR_INIT(p, ATTR_ID, v)
101 #define PAIR_CLASS_INIT(p, v) PAIR_INIT(p, ATTR_CLASS, v)
102 #define PAIR_HREF_INIT(p, v) PAIR_INIT(p, ATTR_HREF, v)
103 #define PAIR_STYLE_INIT(p, h) PAIR_INIT(p, ATTR_STYLE, (h)->buf)
104
105 enum htmltype {
106 HTML_HTML_4_01_STRICT,
107 HTML_XHTML_1_0_STRICT
108 };
109
110 struct html {
111 int flags;
112 #define HTML_NOSPACE (1 << 0) /* suppress next space */
113 #define HTML_IGNDELIM (1 << 1)
114 #define HTML_KEEP (1 << 2)
115 #define HTML_PREKEEP (1 << 3)
116 #define HTML_NONOSPACE (1 << 4) /* never add spaces */
117 #define HTML_LITERAL (1 << 5) /* literal (e.g., <PRE>) context */
118 #define HTML_SKIPCHAR (1 << 6) /* skip the next character */
119 #define HTML_NOSPLIT (1 << 7) /* do not break line before .An */
120 #define HTML_SPLIT (1 << 8) /* break line before .An */
121 struct tagq tags; /* stack of open tags */
122 struct rofftbl tbl; /* current table */
123 struct tag *tblt; /* current open table scope */
124 struct mchars *symtab; /* character-escapes */
125 char *base_man; /* base for manpage href */
126 char *base_includes; /* base for include href */
127 char *style; /* style-sheet URI */
128 char buf[BUFSIZ]; /* see bufcat and friends */
129 size_t buflen;
130 struct tag *metaf; /* current open font scope */
131 enum htmlfont metal; /* last used font */
132 enum htmlfont metac; /* current font mode */
133 enum htmltype type; /* output media type */
134 int oflags; /* output options */
135 #define HTML_FRAGMENT (1 << 0) /* don't emit HTML/HEAD/BODY */
136 };
137
138 void print_gen_decls(struct html *);
139 void print_gen_head(struct html *);
140 struct tag *print_otag(struct html *, enum htmltag,
141 int, const struct htmlpair *);
142 void print_tagq(struct html *, const struct tag *);
143 void print_stagq(struct html *, const struct tag *);
144 void print_text(struct html *, const char *);
145 void print_tblclose(struct html *);
146 void print_tbl(struct html *, const struct tbl_span *);
147 void print_eqn(struct html *, const struct eqn *);
148
149 #if __GNUC__ - 0 >= 4
150 __attribute__((__format__ (__printf__, 2, 3)))
151 #endif
152 void bufcat_fmt(struct html *, const char *, ...);
153 void bufcat(struct html *, const char *);
154 void bufcat_id(struct html *, const char *);
155 void bufcat_style(struct html *,
156 const char *, const char *);
157 void bufcat_su(struct html *, const char *,
158 const struct roffsu *);
159 void bufinit(struct html *);
160 void buffmt_man(struct html *,
161 const char *, const char *);
162 void buffmt_includes(struct html *, const char *);
163
164 int html_strlen(const char *);
165
166 __END_DECLS
167
168 #endif /*!HTML_H*/