diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-07-06 12:37:17 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-07-06 12:37:17 +0000 |
commit | 8953dce6410913db1ce531b8f37750ee72bc45e7 (patch) | |
tree | adc1699cfeb140a4e6efb7ef95be6681941ea2fe /html.h | |
parent | 25b9ffe82ac5592b33241ae447d947f4dca24f7f (diff) | |
download | mandoc-8953dce6410913db1ce531b8f37750ee72bc45e7.tar.gz |
Give -T[x]html `Bk -words' capability.
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; |