diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-07 18:16:23 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-07 18:16:23 +0200 |
commit | 2aa90a60a45566ebfdb5252a77bb318810cffe0c (patch) | |
tree | de5fe00ddfa1daae9422d134b8da4bead6de9694 /src/construct/html_flow.rs | |
parent | 1c3b6e900d9b23e8a1f34f1c5b7b9657bd7c1451 (diff) | |
download | markdown-rs-2aa90a60a45566ebfdb5252a77bb318810cffe0c.tar.gz markdown-rs-2aa90a60a45566ebfdb5252a77bb318810cffe0c.tar.bz2 markdown-rs-2aa90a60a45566ebfdb5252a77bb318810cffe0c.zip |
Fix some small to dos
Diffstat (limited to 'src/construct/html_flow.rs')
-rw-r--r-- | src/construct/html_flow.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/construct/html_flow.rs b/src/construct/html_flow.rs index 229b0ef..be7a3a9 100644 --- a/src/construct/html_flow.rs +++ b/src/construct/html_flow.rs @@ -105,6 +105,8 @@ use crate::construct::{ use crate::tokenizer::{Code, State, StateFnResult, TokenType, Tokenizer}; use crate::util::codes::{parse, serialize}; +// To do: mark as concrete (block quotes or lists can’t “pierce” into HTML). + /// Kind of HTML (flow). #[derive(Debug, PartialEq)] enum Kind { @@ -194,8 +196,6 @@ struct Info { quote: Option<QuoteKind>, } -// To do: mark as concrete (block quotes or lists can’t “pierce” into HTML). - /// Start of HTML (flow), before optional whitespace. /// /// ```markdown |