diff options
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 |