diff options
author | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-10-16 18:11:15 +0000 |
---|---|---|
committer | Fumitoshi UKAI <ukai@debian.or.jp> | 2002-10-16 18:11:15 +0000 |
commit | eca32d1b71cc1c94e492c87f708137a491ae8214 (patch) | |
tree | 32eb6560151d6881527746bc48b03eceaed44520 /html.c | |
parent | [w3m-dev 03339] Re: Debian Bug#164098 w3m: <sup> is not properly supported (diff) | |
download | w3m-eca32d1b71cc1c94e492c87f708137a491ae8214.tar.gz w3m-eca32d1b71cc1c94e492c87f708137a491ae8214.zip |
[w3m-dev 03341] white space is needed to close an empty-element tag
* parsetagx.c (parse_tag): extract tagname until '/'
From: Daiki Ueno <ueno@unixuser.org>
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $Id: html.c,v 1.13 2002/10/10 16:59:33 ukai Exp $ */ +/* $Id: html.c,v 1.14 2002/10/16 18:11:15 ukai Exp $ */ #include "html.h" /* Define HTML Tag Infomation Table */ @@ -216,10 +216,10 @@ TagInfo TagMAP[MAX_HTMLTAG] = { {"noframes", ALST_NOFRAMES, MAXA_NOFRAMES, 0}, /* 98 HTML_NOFRAMES */ {"/noframes", NULL, 0, TFLG_END}, /* 99 HTML_N_NOFRAMES */ - {"sup", NULL, 0, 0}, /* 100 HTML_SUP */ - {"/sup", NULL, 0, 0}, /* 101 HTML_N_SUP */ - {"sub", NULL, 0, 0}, /* 102 HTML_SUB */ - {"/sub", NULL, 0, 0}, /* 103 HTML_N_SUB */ + {"sup", NULL, 0, 0}, /* 100 HTML_SUP */ + {"/sup", NULL, 0, 0}, /* 101 HTML_N_SUP */ + {"sub", NULL, 0, 0}, /* 102 HTML_SUB */ + {"/sub", NULL, 0, 0}, /* 103 HTML_N_SUB */ {NULL, NULL, 0, 0}, /* 104 Undefined */ {NULL, NULL, 0, 0}, /* 105 Undefined */ |