diff options
author | 2014-09-17 19:53:35 +0000 | |
---|---|---|
committer | 2014-09-17 19:53:35 +0000 | |
commit | bf997c2c5f9c3b96c99d6062d579f9238593d4c7 (patch) | |
tree | f9395e3a897282b650eefee82a33a40f47c07979 /usr.bin/mandoc/html.h | |
parent | regen (diff) | |
download | wireguard-openbsd-bf997c2c5f9c3b96c99d6062d579f9238593d4c7.tar.xz wireguard-openbsd-bf997c2c5f9c3b96c99d6062d579f9238593d4c7.zip |
implement .An -[no]split for -Thtml
Diffstat (limited to 'usr.bin/mandoc/html.h')
-rw-r--r-- | usr.bin/mandoc/html.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mandoc/html.h b/usr.bin/mandoc/html.h index bbbd4741452..2f7a874fdb1 100644 --- a/usr.bin/mandoc/html.h +++ b/usr.bin/mandoc/html.h @@ -1,4 +1,4 @@ -/* $Id: html.h,v 1.23 2014/08/14 00:29:12 schwarze Exp $ */ +/* $OpenBSD: html.h,v 1.24 2014/09/17 19:53:35 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 */ |