]> git.cameronkatri.com Git - mandoc.git/blob - html.h
Make literal `Bd' use a PRE in -Thtml. Make `Bd' output in general use
[mandoc.git] / html.h
1 /* $Id: html.h,v 1.31 2010/12/17 10:37:26 kristaps Exp $ */
2 /*
3 * Copyright (c) 2008, 2009, 2010 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_MAX
50 };
51
52 enum htmlattr {
53 ATTR_HTTPEQUIV,
54 ATTR_CONTENT,
55 ATTR_NAME,
56 ATTR_REL,
57 ATTR_HREF,
58 ATTR_TYPE,
59 ATTR_MEDIA,
60 ATTR_CLASS,
61 ATTR_STYLE,
62 ATTR_WIDTH,
63 ATTR_VALIGN,
64 ATTR_TARGET,
65 ATTR_ID,
66 ATTR_SUMMARY,
67 ATTR_MAX
68 };
69
70 enum htmlfont {
71 HTMLFONT_NONE = 0,
72 HTMLFONT_BOLD,
73 HTMLFONT_ITALIC,
74 HTMLFONT_MAX
75 };
76
77 struct tag {
78 struct tag *next;
79 enum htmltag tag;
80 };
81
82 struct tagq {
83 struct tag *head;
84 };
85
86 struct htmlpair {
87 enum htmlattr key;
88 const char *val;
89 };
90
91 #define PAIR_INIT(p, t, v) \
92 do { \
93 (p)->key = (t); \
94 (p)->val = (v); \
95 } while (/* CONSTCOND */ 0)
96
97 #define PAIR_ID_INIT(p, v) PAIR_INIT(p, ATTR_ID, v)
98 #define PAIR_CLASS_INIT(p, v) PAIR_INIT(p, ATTR_CLASS, v)
99 #define PAIR_HREF_INIT(p, v) PAIR_INIT(p, ATTR_HREF, v)
100 #define PAIR_STYLE_INIT(p, h) PAIR_INIT(p, ATTR_STYLE, (h)->buf)
101 #define PAIR_SUMMARY_INIT(p, v) PAIR_INIT(p, ATTR_SUMMARY, v)
102
103 enum htmltype {
104 HTML_HTML_4_01_STRICT,
105 HTML_XHTML_1_0_STRICT
106 };
107
108 struct html {
109 int flags;
110 #define HTML_NOSPACE (1 << 0)
111 #define HTML_IGNDELIM (1 << 1)
112 #define HTML_KEEP (1 << 2)
113 #define HTML_PREKEEP (1 << 3)
114 #define HTML_NONOSPACE (1 << 4)
115 struct tagq tags;
116 void *symtab;
117 char *base;
118 char *base_man;
119 char *base_includes;
120 char *style;
121 char buf[BUFSIZ];
122 size_t buflen;
123 struct tag *metaf;
124 enum htmlfont metal;
125 enum htmlfont metac;
126 enum htmltype type;
127 };
128
129 struct roffsu;
130
131 void print_gen_decls(struct html *);
132 void print_gen_head(struct html *);
133 struct tag *print_ofont(struct html *, enum htmlfont);
134 struct tag *print_otag(struct html *, enum htmltag,
135 int, const struct htmlpair *);
136 void print_tagq(struct html *, const struct tag *);
137 void print_stagq(struct html *, const struct tag *);
138 void print_text(struct html *, const char *);
139
140 void bufcat_su(struct html *, const char *,
141 const struct roffsu *);
142 void buffmt_man(struct html *,
143 const char *, const char *);
144 void buffmt_includes(struct html *, const char *);
145 void buffmt(struct html *, const char *, ...);
146 void bufcat(struct html *, const char *);
147 void bufcat_style(struct html *,
148 const char *, const char *);
149 void bufncat(struct html *, const char *, size_t);
150 void bufinit(struct html *);
151
152 void html_idcat(char *, const char *, int);
153
154 __END_DECLS
155
156 #endif /*!HTML_H*/