diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-09-17 19:55:59 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-09-17 19:55:59 +0000 |
commit | 1a83560d87fea644ef91cb18ccce965eca6e155d (patch) | |
tree | 7355069f896cac52047403777cf6fae7d2ee2e11 /html.h | |
parent | d842103586323f4321c124177f6aebc8d8cea8d3 (diff) | |
download | mandoc-1a83560d87fea644ef91cb18ccce965eca6e155d.tar.gz |
implement .An -[no]split for -Thtml
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 */ |