blob: 9d774335c29084f8d17f2552b9321f7bb0132e39 (
plain)
1
2
3
4
5
6
7
8
9
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);
}
|