diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-28 16:54:37 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-28 16:54:43 +0200 |
commit | 6e9447b5ec7f1823b7d08ed8f51eed23d3856cce (patch) | |
tree | c313716db1082e6cd1383af66297ce7acd4f1911 /src/construct/autolink.rs | |
parent | e9db93b428bc3da7c1fa3bcf8acf166012cf18c8 (diff) | |
download | markdown-rs-6e9447b5ec7f1823b7d08ed8f51eed23d3856cce.tar.gz markdown-rs-6e9447b5ec7f1823b7d08ed8f51eed23d3856cce.tar.bz2 markdown-rs-6e9447b5ec7f1823b7d08ed8f51eed23d3856cce.zip |
Add docs to label end
Diffstat (limited to '')
-rw-r--r-- | src/construct/autolink.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/construct/autolink.rs b/src/construct/autolink.rs index 33cb3f0..e94066b 100644 --- a/src/construct/autolink.rs +++ b/src/construct/autolink.rs @@ -99,8 +99,6 @@ //! [autolink_domain_size_max]: crate::constant::AUTOLINK_DOMAIN_SIZE_MAX //! [sanitize_uri]: crate::util::sanitize_uri //! [html-a]: https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-a-element -//! -//! <!-- To do: add explanation of sanitation. --> use crate::constant::{AUTOLINK_DOMAIN_SIZE_MAX, AUTOLINK_SCHEME_SIZE_MAX}; use crate::tokenizer::{Code, State, StateFnResult, TokenType, Tokenizer}; |