version 1.21, 2009/11/16 06:07:49 |
version 1.24, 2010/06/19 20:46:27 |
|
|
/* $Id$ */ |
/* $Id$ */ |
/* |
/* |
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> |
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv> |
* |
* |
* Permission to use, copy, modify, and distribute this software for any |
* Permission to use, copy, modify, and distribute this software for any |
* purpose with or without fee is hereby granted, provided that the above |
* purpose with or without fee is hereby granted, provided that the above |
|
|
TAG_DIV, |
TAG_DIV, |
TAG_H1, |
TAG_H1, |
TAG_H2, |
TAG_H2, |
TAG_P, |
|
TAG_SPAN, |
TAG_SPAN, |
TAG_LINK, |
TAG_LINK, |
TAG_BR, |
TAG_BR, |
|
|
TAG_LI, |
TAG_LI, |
TAG_UL, |
TAG_UL, |
TAG_OL, |
TAG_OL, |
TAG_BASE, |
|
TAG_MAX |
TAG_MAX |
}; |
}; |
|
|
Line 92 struct htmlpair { |
|
Line 90 struct htmlpair { |
|
const char *val; |
const char *val; |
}; |
}; |
|
|
#define PAIR_CLASS_INIT(p, v) \ |
#define PAIR_INIT(p, t, v) \ |
do { (p)->key = ATTR_CLASS; \ |
do { \ |
(p)->val = (v); } while (/* CONSTCOND */ 0) |
(p)->key = (t); \ |
#define PAIR_HREF_INIT(p, v) \ |
(p)->val = (v); \ |
do { (p)->key = ATTR_HREF; \ |
} while (/* CONSTCOND */ 0) |
(p)->val = (v); } while (/* CONSTCOND */ 0) |
|
#define PAIR_STYLE_INIT(p, h) \ |
|
do { (p)->key = ATTR_STYLE; \ |
|
(p)->val = (h)->buf; } while (/* CONSTCOND */ 0) |
|
#define PAIR_SUMMARY_INIT(p, v) \ |
|
do { (p)->key = ATTR_SUMMARY; \ |
|
(p)->val = (v); } while (/* CONSTCOND */ 0) |
|
|
|
|
#define PAIR_ID_INIT(p, v) PAIR_INIT(p, ATTR_ID, v) |
|
#define PAIR_CLASS_INIT(p, v) PAIR_INIT(p, ATTR_CLASS, v) |
|
#define PAIR_HREF_INIT(p, v) PAIR_INIT(p, ATTR_HREF, v) |
|
#define PAIR_STYLE_INIT(p, h) PAIR_INIT(p, ATTR_STYLE, (h)->buf) |
|
#define PAIR_SUMMARY_INIT(p, v) PAIR_INIT(p, ATTR_SUMMARY, v) |
|
|
|
enum htmltype { |
|
HTML_HTML_4_01_STRICT, |
|
HTML_XHTML_1_0_STRICT |
|
}; |
|
|
struct html { |
struct html { |
int flags; |
int flags; |
#define HTML_NOSPACE (1 << 0) |
#define HTML_NOSPACE (1 << 0) |
|
|
struct tag *metaf; |
struct tag *metaf; |
enum htmlfont metal; |
enum htmlfont metal; |
enum htmlfont metac; |
enum htmlfont metac; |
|
enum htmltype type; |
}; |
}; |
|
|
struct roffsu; |
struct roffsu; |
|
|
void print_gen_doctype(struct html *); |
void print_gen_decls(struct html *); |
void print_gen_head(struct html *); |
void print_gen_head(struct html *); |
struct tag *print_ofont(struct html *, enum htmlfont); |
struct tag *print_ofont(struct html *, enum htmlfont); |
struct tag *print_otag(struct html *, enum htmltag, |
struct tag *print_otag(struct html *, enum htmltag, |