Fix a panic when parsing node summaries
This commit is contained in:
parent
3fa399c317
commit
3c0de5ca32
2 changed files with 17 additions and 13 deletions
|
|
@ -1,6 +1,8 @@
|
|||
use crate::syntax::content::parser::{
|
||||
state::State,
|
||||
token::{Token, paragraph::Paragraph, preformat::PreFormat},
|
||||
token::{
|
||||
Token, header::Header, paragraph::Paragraph, preformat::PreFormat,
|
||||
},
|
||||
};
|
||||
|
||||
pub mod block;
|
||||
|
|
@ -31,7 +33,7 @@ pub enum Inline {
|
|||
}
|
||||
|
||||
/// # Panics
|
||||
/// Panics if there is an open header at end of input.
|
||||
/// Panics if there is an open header or list at end of input.
|
||||
pub fn close(state: &State, tokens: &mut Vec<Token>) {
|
||||
match state.context.block {
|
||||
Block::PreFormat => {
|
||||
|
|
@ -43,7 +45,9 @@ pub fn close(state: &State, tokens: &mut Vec<Token>) {
|
|||
Block::List => {
|
||||
panic!("End of input with open list")
|
||||
},
|
||||
Block::Header(_) => panic!("End of input with open header"),
|
||||
Block::Header(level) => {
|
||||
tokens.push(Token::Header(Header::from_u8(level, false, None)));
|
||||
},
|
||||
Block::None => (),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue