Don't close input tags

This commit is contained in:
blankie 2023-05-02 15:49:15 +07:00
parent cec8d1c4b7
commit 8d61ca4ee3
Signed by: blankie
GPG Key ID: CC15FC822C7F61F5
1 changed files with 1 additions and 1 deletions

View File

@ -56,5 +56,5 @@ static inline bool is_autoclosing_tag(const char* tag) {
|| !strncmp(tag, "meta", 5)
|| !strncmp(tag, "img", 4)
|| !strncmp(tag, "br", 3)
|| !strncmp(tag, "label", 6);
|| !strncmp(tag, "input", 6);
}