aboutsummaryrefslogtreecommitdiff
path: root/libtxt
diff options
context:
space:
mode:
authorMarvin Borner2020-11-29 18:43:31 +0100
committerMarvin Borner2020-11-29 18:43:31 +0100
commitcb9816c78f25ecc8736cd97c11c839a4c18bcf76 (patch)
tree8bacb607dc7eae0a6bb8691a759325a2b3a41270 /libtxt
parent727fd72e6a9b8a0ce44af1cf8648981092300ee7 (diff)
Fixed some things
I'm currently working on a huge commit, but it doesn't work.. WAIT AND SEE!
Diffstat (limited to 'libtxt')
-rw-r--r--libtxt/html.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libtxt/html.c b/libtxt/html.c
index 794ef95..4e12555 100644
--- a/libtxt/html.c
+++ b/libtxt/html.c
@@ -199,6 +199,8 @@ static struct html_element *render_object(struct html_element *container, struct
container->x_offset = 0;
container->y_offset += 2;
return container;
+ } else if (CMP(tag, "head") || CMP(tag, "meta") || CMP(tag, "title")) {
+ return container;
} else {
printf("UNKNOWN %s\n", tag);
if (dom->content && strlen(dom->content) > 0) {