diff options
Diffstat (limited to 'libtxt/html.c')
-rw-r--r-- | libtxt/html.c | 2 |
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) { |