diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-15 14:52:16 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-12-15 14:52:16 +0000 |
commit | fb2492a98c627cb31a5ce400bab597e1ff751da4 (patch) | |
tree | 22b69a7d17cf6d996059bd6a2ea9e0343e28495e /html.h | |
parent | 5e2df6c48c6edf1da80c40d4f2b353e8447cf0db (diff) | |
download | mandoc-fb2492a98c627cb31a5ce400bab597e1ff751da4.tar.gz |
In-progress move from -T[x]html using DIVs for its lists to using DL,
OL, and UL. Issue raised by Will Backman, solution proposed by
schwarze@.
Diffstat (limited to 'html.h')
-rw-r--r-- | html.h | 14 |
1 files changed, 4 insertions, 10 deletions
@@ -33,12 +33,16 @@ enum htmltag { TAG_BR, TAG_A, TAG_TABLE, + TAG_TBODY, TAG_COL, TAG_TR, TAG_TD, TAG_LI, TAG_UL, TAG_OL, + TAG_DL, + TAG_DT, + TAG_DD, TAG_MAX }; @@ -72,18 +76,9 @@ struct tag { enum htmltag tag; }; -struct ord { - struct ord *next; - const void *cookie; - int pos; -}; - struct tagq { struct tag *head; }; -struct ordq { - struct ord *head; -}; struct htmlpair { enum htmlattr key; @@ -115,7 +110,6 @@ struct html { #define HTML_PREKEEP (1 << 3) #define HTML_NONOSPACE (1 << 4) struct tagq tags; - struct ordq ords; void *symtab; char *base; char *base_man; |