#ifndef HTML_RULES_H
#define HTML_RULES_H
#include <stddef.h>
int html_is_void(const char *tag);
int html_is_raw_text(const char *tag);
int html_is_escapable_raw_text(const char *tag);
int html_implicitly_closes(const char *parent, const char *child);
void html_normalize_tag(char *tag, size_t len);
#endif