1 /* $Id: html.h,v 1.51 2014/04/20 16:46:04 schwarze Exp $ */
3 * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
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.
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.
96 #define PAIR_INIT(p, t, v) \
100 } while (/* CONSTCOND */ 0)
102 #define PAIR_ID_INIT(p, v) PAIR_INIT(p, ATTR_ID, v)
103 #define PAIR_CLASS_INIT(p, v) PAIR_INIT(p, ATTR_CLASS, v)
104 #define PAIR_HREF_INIT(p, v) PAIR_INIT(p, ATTR_HREF, v)
105 #define PAIR_STYLE_INIT(p, h) PAIR_INIT(p, ATTR_STYLE, (h)->buf)
106 #define PAIR_SUMMARY_INIT(p, v) PAIR_INIT(p, ATTR_SUMMARY, v)
109 HTML_HTML_4_01_STRICT
,
110 HTML_XHTML_1_0_STRICT
115 #define HTML_NOSPACE (1 << 0) /* suppress next space */
116 #define HTML_IGNDELIM (1 << 1)
117 #define HTML_KEEP (1 << 2)
118 #define HTML_PREKEEP (1 << 3)
119 #define HTML_NONOSPACE (1 << 4) /* never add spaces */
120 #define HTML_LITERAL (1 << 5) /* literal (e.g., <PRE>) context */
121 #define HTML_SKIPCHAR (1 << 6) /* skip the next character */
122 struct tagq tags
; /* stack of open tags */
123 struct rofftbl tbl
; /* current table */
124 struct tag
*tblt
; /* current open table scope */
125 struct mchars
*symtab
; /* character-escapes */
126 char *base_man
; /* base for manpage href */
127 char *base_includes
; /* base for include href */
128 char *style
; /* style-sheet URI */
129 char buf
[BUFSIZ
]; /* see bufcat and friends */
131 struct tag
*metaf
; /* current open font scope */
132 enum htmlfont metal
; /* last used font */
133 enum htmlfont metac
; /* current font mode */
134 enum htmltype type
; /* output media type */
135 int oflags
; /* output options */
136 #define HTML_FRAGMENT (1 << 0) /* don't emit HTML/HEAD/BODY */
139 void print_gen_decls(struct html
*);
140 void print_gen_head(struct html
*);
141 struct tag
*print_otag(struct html
*, enum htmltag
,
142 int, const struct htmlpair
*);
143 void print_tagq(struct html
*, const struct tag
*);
144 void print_stagq(struct html
*, const struct tag
*);
145 void print_text(struct html
*, const char *);
146 void print_tblclose(struct html
*);
147 void print_tbl(struct html
*, const struct tbl_span
*);
148 void print_eqn(struct html
*, const struct eqn
*);
150 #if __GNUC__ - 0 >= 4
151 __attribute__((__format__ (__printf__
, 2, 3)))
153 void bufcat_fmt(struct html
*, const char *, ...);
154 void bufcat(struct html
*, const char *);
155 void bufcat_id(struct html
*, const char *);
156 void bufcat_style(struct html
*,
157 const char *, const char *);
158 void bufcat_su(struct html
*, const char *,
159 const struct roffsu
*);
160 void bufinit(struct html
*);
161 void buffmt_man(struct html
*,
162 const char *, const char *);
163 void buffmt_includes(struct html
*, const char *);
165 int html_strlen(const char *);