diff --git a/README.md b/README.md index 8816822..ad2a943 100644 --- a/README.md +++ b/README.md @@ -284,7 +284,7 @@ For brevity, hyperbuild has built-in sets of tags that can be used in place of d |`$contentfirst`|`dd`, `details`, `dt`, `iframe`, `label`, `li`, `noscript`, `output`, `progress`, `slot`, `td`, `template`, `th`|[contentfirsttags.c](src/main/c/rule/tag/contentfirsttags.c)| |`$formatting`|`a`, `abbr`, `b`, `bdi`, `bdo`, `cite`, `data`, `del`, `dfn`, `em`, `i`, `ins`, `kbd`, `mark`, `q`, `rp`, `rt`, `rtc`, `ruby`, `s`, `samp`, `small`, `span`, `strong`, `sub`, `sup`, `time`, `u`, `var`, `wbr`|[formattingtags.c](src/main/c/rule/tag/formattingtags.c)| |`$layout`|`blockquote`, `body`, `colgroup`, `datalist`, `dialog`, `div`, `dl`, `fieldset`, `figure`, `footer`, `form`, `head`, `header`, `hgroup`, `html`, `main`, `map`, `menu`, `nav`, `ol`, `optgroup`, `picture`, `section`, `select`, `table`, `tbody`, `tfoot`, `thead`, `tr`, `ul`|[layouttags.c](src/main/c/rule/tag/layouttags.c)| -|`$specific`|`area`, `base`, `br`, `code`, `col`, `embed`, `hr`, `img`, `input`, `param`, `pre`, `script`, `source`, `track`|[specifictags.c](src/main/c/rule/tag/specifictags.c)| +|`$specific`|All [SVG tags](src/main/c/rule/tag/svgtags.c), `area`, `base`, `br`, `code`, `col`, `embed`, `hr`, `img`, `input`, `param`, `pre`, `script`, `source`, `track`|[specifictags.c](src/main/c/rule/tag/specifictags.c)| |`$heading`|`hgroup`, `h1`, `h2`, `h3`, `h4`, `h5`, `h6`|[headingtags.c](src/main/c/rule/tag/headingtags.c)| |`$media`|`audio`, `video`|[mediatags.c](src/main/c/rule/tag/mediatags.c)| |`$sectioning`|`article`, `aside`, `nav`, `section`|[sectioningtags.c](src/main/c/rule/tag/sectioningtags.c)| diff --git a/src/main/c/rule/tag/specifictags.c b/src/main/c/rule/tag/specifictags.c index 75932da..16ff1d0 100644 --- a/src/main/c/rule/tag/specifictags.c +++ b/src/main/c/rule/tag/specifictags.c @@ -5,9 +5,12 @@ #include "../../util/hbchar.h" #include "./sectioningtags.c" +#include "./svgtags.c" + static nh_set_str_t hbr_specifictags_set; void hbr_specifictags_add_elems(nh_set_str_t set) { + hbr_svgtags_add_elems(set); nh_set_str_add(set, "area"); nh_set_str_add(set, "base"); nh_set_str_add(set, "br");