summaryrefslogtreecommitdiffstats
path: root/html.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-03 15:08:09 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-03 15:08:09 +0000
commit54bada649de2dc93dd974dabdb3c9a3c732571f5 (patch)
treec6232a3224f4c599fc64f935d85a38c77758952c /html.h
parent30fcd4b7eb064dd0029d7fc6e60afc9b973015cb (diff)
downloadmandoc-54bada649de2dc93dd974dabdb3c9a3c732571f5.tar.gz
Element tag buffer is now part of struct html.
buffmt() can be called in sequence. Noted BUFSIZ-sized buffer in CAVEATS (attribute length for link formats). Added -oman=FMT -Thtml option for `Xr' manual links. Removed -obase=URI -Thtml option (obsolete).
Diffstat (limited to 'html.h')
-rw-r--r--html.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/html.h b/html.h
index 1298a0a5..a57c64ae 100644
--- a/html.h
+++ b/html.h
@@ -87,7 +87,10 @@ struct html {
struct ordq ords;
void *symtab;
char *base;
+ char *base_man;
char *style;
+ char buf[BUFSIZ];
+ size_t buflen;
};
void print_gen_doctype(struct html *);