aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/html.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-07-06 12:37:17 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-07-06 12:37:17 +0000
commitb5257bc3473c0f02c94b7717debac9dc6b0738f4 (patch)
treedea841229e4f16df1ee64d746bb20d0f7759469c /html.h
parented642de7ca282d168ea118d0860186abb1abcd59 (diff)
downloadmandoc-b5257bc3473c0f02c94b7717debac9dc6b0738f4.tar.gz
mandoc-b5257bc3473c0f02c94b7717debac9dc6b0738f4.tar.zst
mandoc-b5257bc3473c0f02c94b7717debac9dc6b0738f4.zip
Give -T[x]html `Bk -words' capability.
Diffstat (limited to 'html.h')
-rw-r--r--html.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/html.h b/html.h
index 874adc07..503acd57 100644
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/* $Id: html.h,v 1.24 2010/06/19 20:46:27 kristaps Exp $ */
+/* $Id: html.h,v 1.25 2010/07/06 12:37:17 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -110,7 +110,9 @@ enum htmltype {
struct html {
int flags;
#define HTML_NOSPACE (1 << 0)
-#define HTML_IGNDELIM (1 << 2)
+#define HTML_IGNDELIM (1 << 1)
+#define HTML_KEEP (1 << 2)
+#define HTML_PREKEEP (1 << 3)
struct tagq tags;
struct ordq ords;
void *symtab;