mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
This makes the document URL available to all the parse_attributes() callbacks, in case they need it for anything.
8 lines
151 B
C
8 lines
151 B
C
#pragma once
|
|
|
|
#include <AK/NonnullRefPtr.h>
|
|
#include <LibHTML/DOM/Document.h>
|
|
|
|
NonnullRefPtr<Document> parse_html(const String&, const URL& = URL());
|
|
|