diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2020-08-23 10:07:22 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-23 10:07:22 +0000 |
commit | 59f873b7bf709f63b6f724f38614e699681de2e3 (patch) | |
tree | b080e66c539a1171bf2b43b60ff66f16bc960d64 /html.h | |
parent | Update ChangeLog (diff) | |
parent | Rudimentary support for figure, figcaption (diff) | |
download | w3m-59f873b7bf709f63b6f724f38614e699681de2e3.tar.gz w3m-59f873b7bf709f63b6f724f38614e699681de2e3.zip |
Merge pull request #136 from acli/20200821_figure
Rudimentary support for figure, figcaption
Diffstat (limited to '')
-rw-r--r-- | html.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -231,6 +231,10 @@ typedef struct { #define HTML_PARAM 138 #define HTML_SMALL 139 #define HTML_N_SMALL 140 +#define HTML_FIGURE 141 +#define HTML_N_FIGURE 142 +#define HTML_FIGCAPTION 143 +#define HTML_N_FIGCAPTION 144 /* pseudo tag */ #define HTML_SELECT_INT 160 |