aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit224d010444ff10359e8d1c19e8739476b1e8f0f9 (patch)
tree6a6183a1dbc32d1b933007a67f7615cc989226d4 /html.h
parentccb56233c5986fe4875341405f85b15dcb2e946f (diff)
downloadmandoc-224d010444ff10359e8d1c19e8739476b1e8f0f9.tar.gz
mandoc-224d010444ff10359e8d1c19e8739476b1e8f0f9.tar.zst
mandoc-224d010444ff10359e8d1c19e8739476b1e8f0f9.zip
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.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/html.h b/html.h
index a776f466..555aac27 100644
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/* $Id: html.h,v 1.7 2009/09/24 09:50:31 kristaps Exp $ */
+/* $Id: html.h,v 1.8 2009/10/03 15:08:09 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -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 *);