Parcourir la source

fix(sanitizer): correct HTML tag name from `tfooter` to `tfoot`

Frédéric Guillot il y a 1 an
Parent
commit
e777f12490
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      internal/reader/sanitizer/sanitizer.go

+ 1 - 1
internal/reader/sanitizer/sanitizer.go

@@ -66,7 +66,7 @@ var (
 		"sup":        {"id"},
 		"table":      {},
 		"td":         {"rowspan", "colspan"},
-		"tfooter":    {},
+		"tfoot":      {},
 		"th":         {"rowspan", "colspan"},
 		"thead":      {},
 		"time":       {"datetime"},