aboutsummaryrefslogtreecommitdiffstats
path: root/html.c
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2021-02-14 14:12:36 +0000
committerGitHub <noreply@github.com>2021-02-14 14:12:36 +0000
commiteafca63aa10270a08fe484b97f0d3d7c1f10408d (patch)
tree4d0ea51de027e9ee67b3e96c813a1306f4635e86 /html.c
parentUpdate ChangeLog (diff)
parentFix a mistake I made with </dd> and </dt> tags (diff)
downloadw3m-eafca63aa10270a08fe484b97f0d3d7c1f10408d.tar.gz
w3m-eafca63aa10270a08fe484b97f0d3d7c1f10408d.zip
Merge pull request #167 from bptato/master
Improved description list rendering
Diffstat (limited to '')
-rw-r--r--html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.c b/html.c
index 7499191..3573ef6 100644
--- a/html.c
+++ b/html.c
@@ -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 */