From 6570663a2d81a5dddc07e7eac94533b12cc62fbc Mon Sep 17 00:00:00 2001 From: nickelc Date: Tue, 2 Apr 2024 21:38:07 +0200 Subject: [PATCH] docs: fix bare url (#523) Bare URLs are not automatically turned into clickable links. --- html5ever/src/tokenizer/interface.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html5ever/src/tokenizer/interface.rs b/html5ever/src/tokenizer/interface.rs index b3b8a1cf..bb9f89dc 100644 --- a/html5ever/src/tokenizer/interface.rs +++ b/html5ever/src/tokenizer/interface.rs @@ -92,7 +92,7 @@ pub trait TokenSink { /// Used in the markup declaration open state. By default, this always /// returns false and thus all CDATA sections are tokenized as bogus /// comments. - /// https://html.spec.whatwg.org/multipage/#markup-declaration-open-state + /// fn adjusted_current_node_present_but_not_in_html_namespace(&self) -> bool { false }