Skip to content

Commit

Permalink
fix list of unsupported tags
Browse files Browse the repository at this point in the history
A previous commit sourced the list of tag names
from an old HTML spec. The list has now been
updated following the HTML living spec.

https://html.spec.whatwg.org/#non-conforming-features
  • Loading branch information
kristoff-it committed Sep 12, 2024
1 parent a7d77d5 commit 24651f9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/html/Ast.zig
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,16 @@ const unsupported_names = TagNameMap.initComptime(.{
.{ "frame", {} },
.{ "frameset", {} },
.{ "noframes", {} },
.{ "hgroup", {} },
.{ "isindex", {} },
.{ "keygen", {} },
.{ "listing", {} },
.{ "menuitem", {} },
.{ "nextid", {} },
.{ "noembed", {} },
.{ "param", {} },
.{ "plaintext", {} },
.{ "rb", {} },
.{ "rtc", {} },
.{ "strike", {} },
.{ "xmp", {} },
.{ "basefont", {} },
Expand Down

0 comments on commit 24651f9

Please sign in to comment.