LibHTML: Start working on a simple HTML library.

I'd like to have rich text, and we might as well use HTML for that. :^)
This commit is contained in:
Andreas Kling 2019-06-15 18:55:47 +02:00
parent 01d1aee922
commit a67e823838
Notes: sideshowbarker 2024-07-19 13:35:54 +09:00
19 changed files with 329 additions and 0 deletions

10
LibHTML/test.cpp Normal file
View file

@ -0,0 +1,10 @@
#include <LibHTML/Dump.h>
#include <LibHTML/Element.h>
#include <LibHTML/Parser.h>
int main()
{
String html = "<html><head><title>my page</title></head><body><h1>Hi there</h1><p>Hello World!</p></body></html>";
auto doc = parse(html);
dump_tree(doc);
}