aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/html.h
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-09-17 19:55:59 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-09-17 19:55:59 +0000
commitf85be39182e378f3e41ba0909f7afabbf5758462 (patch)
tree4fdac279f57abe8acb227789e0c51312c5c425c7 /html.h
parentc29cc134a865e836bd74aea30c3001c18a13e56c (diff)
downloadmandoc-f85be39182e378f3e41ba0909f7afabbf5758462.tar.gz
mandoc-f85be39182e378f3e41ba0909f7afabbf5758462.tar.zst
mandoc-f85be39182e378f3e41ba0909f7afabbf5758462.zip
implement .An -[no]split for -Thtml
Diffstat (limited to 'html.h')
-rw-r--r--html.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/html.h b/html.h
index 1f0a16d3..d2c87c7a 100644
--- a/html.h
+++ b/html.h
@@ -1,4 +1,4 @@
-/* $Id: html.h,v 1.53 2014/08/14 00:31:43 schwarze Exp $ */
+/* $Id: html.h,v 1.54 2014/09/17 19:55:59 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -119,6 +119,8 @@ struct html {
#define HTML_NONOSPACE (1 << 4) /* never add spaces */
#define HTML_LITERAL (1 << 5) /* literal (e.g., <PRE>) context */
#define HTML_SKIPCHAR (1 << 6) /* skip the next character */
+#define HTML_NOSPLIT (1 << 7) /* do not break line before .An */
+#define HTML_SPLIT (1 << 8) /* break line before .An */
struct tagq tags; /* stack of open tags */
struct rofftbl tbl; /* current table */
struct tag *tblt; /* current open table scope */