mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-29 11:00:29 +00:00
11 lines
266 B
C++
11 lines
266 B
C++
|
#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);
|
||
|
}
|