summaryrefslogtreecommitdiffstats
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
commit1a83560d87fea644ef91cb18ccce965eca6e155d (patch)
tree7355069f896cac52047403777cf6fae7d2ee2e11 /html.h
parentd842103586323f4321c124177f6aebc8d8cea8d3 (diff)
downloadmandoc-1a83560d87fea644ef91cb18ccce965eca6e155d.tar.gz
implement .An -[no]split for -Thtml
Diffstat (limited to 'html.h')
-rw-r--r--html.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/html.h b/html.h
index 0547c597..417dd167 100644
--- a/html.h
+++ b/html.h
@@ -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 */