diff options
author | corvid <devnull@localhost> | 2015-04-26 14:07:55 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2015-04-26 14:07:55 +0000 |
commit | f105d0398e5be19451d51e2ab72d8c9f1248f146 (patch) | |
tree | 6b1c2bdd9beaf58607a7f787e711439f2e9ea3d5 | |
parent | 5e00c2e9f8ac73c29fc44e348e9e2016639832f0 (diff) |
in html5, ADDRESS may contain certain elements that we classify as block.
Not heading/sectioning ones, but P is legal, for example.
-rw-r--r-- | src/html.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html.cc b/src/html.cc index d8000328..61c216fa 100644 --- a/src/html.cc +++ b/src/html.cc @@ -3506,7 +3506,7 @@ const TagInfo Tags[] = { {"a", B8(011101),'R',2, Html_tag_open_a, NULL, Html_tag_close_a}, {"abbr", B8(010101),'R',2, Html_tag_open_abbr, NULL, NULL}, /* acronym 010101 -- obsolete in HTML5 */ - {"address", B8(010110),'R',2,Html_tag_open_default, NULL, Html_tag_close_par}, + {"address", B8(011110),'R',2,Html_tag_open_default, NULL, Html_tag_close_par}, {"area", B8(010001),'F',0, Html_tag_open_default, Html_tag_content_area, NULL}, {"article", B8(011110),'R',2, Html_tag_open_sectioning, NULL, NULL}, |