
This makes the document URL available to all the parse_attributes() callbacks, in case they need it for anything.
7 lines
151 B
C
7 lines
151 B
C
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibHTML/DOM/Document.h>
|
|
|
|
NonnullRefPtr<Document> parse_html(const String&, const URL& = URL());
|
|
|