diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2020-08-30 00:59:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-30 00:59:02 +0000 |
commit | f8b3efef9ca4399151e33897017ff3bf43afbe9e (patch) | |
tree | e7cecd5b5e1cadd8532cbe1b80e1e2fc80f15679 /html.c | |
parent | Merge pull request #146 from acli/20200821_a_CLEANED (diff) | |
parent | wip from about a week ago. Need to stash these away for now to check the q br... (diff) | |
download | w3m-f8b3efef9ca4399151e33897017ff3bf43afbe9e.tar.gz w3m-f8b3efef9ca4399151e33897017ff3bf43afbe9e.zip |
Merge pull request #147 from acli/20200825_section
Rudimentary support for the section tag
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -272,9 +272,9 @@ TagInfo TagMAP[MAX_HTMLTAG] = { {"/figure", NULL, 0, TFLG_END}, /* 142 HTML_N_FIGURE */ {"figcaption", ALST_P, MAXA_P, 0}, /* 143 HTML_FIGCAPTION */ {"/figcaption", NULL, 0, TFLG_END}, /* 144 HTML_N_FIGCAPTION */ + {"section", ALST_NOP, MAXA_NOP, 0}, /* 145 HTML_SECTION */ + {"/section", NULL, 0, TFLG_END}, /* 146 HTML_N_SECTION */ - {NULL, NULL, 0, 0}, /* 145 Undefined */ - {NULL, NULL, 0, 0}, /* 146 Undefined */ {NULL, NULL, 0, 0}, /* 147 Undefined */ {NULL, NULL, 0, 0}, /* 148 Undefined */ {NULL, NULL, 0, 0}, /* 149 Undefined */ |