diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-07-25 15:29:11 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-07-25 15:29:11 +0200 |
commit | 11304728b6607bc2a8d41a640308f3379a25b933 (patch) | |
tree | c49fb64a64e1c39b889a40f48dcd44f87aaea7b1 /src/construct/paragraph.rs | |
parent | 9c18ff7858730f0c7782206129375c7efcb7d77f (diff) | |
download | markdown-rs-11304728b6607bc2a8d41a640308f3379a25b933.tar.gz markdown-rs-11304728b6607bc2a8d41a640308f3379a25b933.tar.bz2 markdown-rs-11304728b6607bc2a8d41a640308f3379a25b933.zip |
Improve performance w/ a single feed loop
Diffstat (limited to 'src/construct/paragraph.rs')
-rw-r--r-- | src/construct/paragraph.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/construct/paragraph.rs b/src/construct/paragraph.rs index 5409532..bc980b2 100644 --- a/src/construct/paragraph.rs +++ b/src/construct/paragraph.rs @@ -69,7 +69,7 @@ fn inside(tokenizer: &mut Tokenizer, code: Code) -> State { tokenizer.register_resolver_before("paragraph".to_string(), Box::new(resolve)); // You’d be interrupting. tokenizer.interrupt = true; - State::Ok(if matches!(code, Code::None) { 0 } else { 1 }) + State::Ok(0) } _ => { tokenizer.consume(code); |