mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 09:57:00 +02:00
8 lines
131 B
C
8 lines
131 B
C
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibHTML/DOM/Document.h>
|
|
|
|
NonnullRefPtr<Document> parse_html(const String&);
|
|
|