diff options
Diffstat (limited to 'libtxt/html.c')
-rw-r--r-- | libtxt/html.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libtxt/html.c b/libtxt/html.c new file mode 100644 index 0000000..0c07323 --- /dev/null +++ b/libtxt/html.c @@ -0,0 +1,18 @@ +// MIT License, Copyright (c) 2020 Marvin Borner +// HTML parsing is mainly based on the XML parser + +#include <print.h> +#include <str.h> + +int html_self_closing(const char *tag) +{ + // TODO: Add 'meta'? + const char *void_elements[] = { "area", "base", "br", "col", "embed", "hr", "img", + "input", "link", "param", "source", "track", "wbr" }; + + for (u32 i = 0; i < sizeof(void_elements) / sizeof(void_elements[0]); ++i) { + if (!strcmp(void_elements[i], tag)) + return 1; + } + return 0; +} |