diff options
Diffstat (limited to 'src/tokenizer/interface.rs')
-rw-r--r-- | src/tokenizer/interface.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tokenizer/interface.rs b/src/tokenizer/interface.rs index dfd9a9f..53b06ae 100644 --- a/src/tokenizer/interface.rs +++ b/src/tokenizer/interface.rs @@ -114,7 +114,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 + /// <https://html.spec.whatwg.org/multipage/#markup-declaration-open-state> fn adjusted_current_node_present_but_not_in_html_namespace(&self) -> bool { false } |