diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-08-12 17:03:14 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-08-12 17:03:14 +0200 |
commit | 037fb65633edaad1a75a707eee7c223471d7fb00 (patch) | |
tree | 0d26f2fefd383755901ecc64494df33a9b9f9a5b /src/state.rs | |
parent | 6ba11bdaca1721fb4591819604c340d147798f45 (diff) | |
download | markdown-rs-037fb65633edaad1a75a707eee7c223471d7fb00.tar.gz markdown-rs-037fb65633edaad1a75a707eee7c223471d7fb00.tar.bz2 markdown-rs-037fb65633edaad1a75a707eee7c223471d7fb00.zip |
Remove unneeded state
Diffstat (limited to '')
-rw-r--r-- | src/state.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/state.rs b/src/state.rs index 01530c7..006ffe1 100644 --- a/src/state.rs +++ b/src/state.rs @@ -59,7 +59,6 @@ pub enum Name { CodeFencedMetaBefore, CodeFencedMeta, CodeFencedAtNonLazyBreak, - CodeFencedCloseBefore, CodeFencedCloseStart, CodeFencedBeforeSequenceClose, CodeFencedSequenceClose, @@ -341,7 +340,6 @@ pub fn call(tokenizer: &mut Tokenizer, name: Name) -> State { Name::CodeFencedMetaBefore => construct::code_fenced::meta_before, Name::CodeFencedMeta => construct::code_fenced::meta, Name::CodeFencedAtNonLazyBreak => construct::code_fenced::at_non_lazy_break, - Name::CodeFencedCloseBefore => construct::code_fenced::close_before, Name::CodeFencedCloseStart => construct::code_fenced::close_start, Name::CodeFencedBeforeSequenceClose => construct::code_fenced::before_sequence_close, Name::CodeFencedSequenceClose => construct::code_fenced::sequence_close, |