aboutsummaryrefslogtreecommitdiff
path: root/libtxt/inc
diff options
context:
space:
mode:
authorMarvin Borner2020-11-24 22:28:40 +0100
committerMarvin Borner2020-11-24 22:28:40 +0100
commit0bc77c8c0dbc1737e2909ff5a2d5e5af48b298f7 (patch)
tree106d144f4ac653f111d3942b4c30e9d67861982e /libtxt/inc
parent9257facb17bf74eb0eb1babfc59ff3549eb66242 (diff)
Started HTML rendering
Diffstat (limited to 'libtxt/inc')
-rw-r--r--libtxt/inc/html.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/libtxt/inc/html.h b/libtxt/inc/html.h
index dd2b59f..4eaca0b 100644
--- a/libtxt/inc/html.h
+++ b/libtxt/inc/html.h
@@ -4,6 +4,16 @@
#ifndef HTML_H
#define HTML_H
-int html_self_closing(const char *tag);
+#include <def.h>
+#include <list.h>
+
+struct dom {
+ char *tag;
+ char *content;
+ struct dom *parent;
+ struct list *children;
+};
+
+int html_render(struct element *container, char *data, u32 length);
#endif