mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-08 16:12:23 +02:00
This allows us to avoid unnecessary making unnecessary String copies of all the source text.
8 lines
155 B
C
8 lines
155 B
C
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibHTML/DOM/Document.h>
|
|
|
|
NonnullRefPtr<Document> parse_html(const StringView&, const URL& = URL());
|
|
|