diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2021-02-14 14:12:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-14 14:12:36 +0000 |
commit | eafca63aa10270a08fe484b97f0d3d7c1f10408d (patch) | |
tree | 4d0ea51de027e9ee67b3e96c813a1306f4635e86 /html.c | |
parent | Update ChangeLog (diff) | |
parent | Fix a mistake I made with </dd> and </dt> tags (diff) | |
download | w3m-eafca63aa10270a08fe484b97f0d3d7c1f10408d.tar.gz w3m-eafca63aa10270a08fe484b97f0d3d7c1f10408d.zip |
Merge pull request #167 from bptato/master
Improved description list rendering
Diffstat (limited to '')
-rw-r--r-- | html.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -274,9 +274,9 @@ TagInfo TagMAP[MAX_HTMLTAG] = { {"/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 */ + {"/dt", NULL, 0, TFLG_END}, /* 147 HTML_N_DT */ + {"/dd", NULL, 0, TFLG_END}, /* 148 HTML_N_DD */ - {NULL, NULL, 0, 0}, /* 147 Undefined */ - {NULL, NULL, 0, 0}, /* 148 Undefined */ {NULL, NULL, 0, 0}, /* 149 Undefined */ {NULL, NULL, 0, 0}, /* 150 Undefined */ {NULL, NULL, 0, 0}, /* 151 Undefined */ |