inline: mv footnote label from span to event field

This commit is contained in:
Noah Hellman 2023-04-24 19:50:52 +02:00
parent 0a144574f4
commit 9676d9e5d6
2 changed files with 9 additions and 11 deletions

View file

@ -12,8 +12,8 @@ use Container::*;
use ControlFlow::*;
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Atom {
FootnoteReference,
pub enum Atom<'s> {
FootnoteReference { label: &'s str },
Symbol,
Softbreak,
Hardbreak,
@ -58,7 +58,7 @@ pub enum QuoteType {
pub enum EventKind<'s> {
Enter(Container<'s>),
Exit(Container<'s>),
Atom(Atom),
Atom(Atom<'s>),
Str,
Attributes {
container: bool,
@ -647,10 +647,10 @@ impl<'s> Parser<'s> {
.sum();
if end {
self.input.lexer = lex::Lexer::new(ahead.as_str());
self.input.span = self.input.span.after(len);
self.push(EventKind::Atom(FootnoteReference));
self.input.span = self.input.span.after(1);
return Some(Continue);
let span_label = self.input.span.after(len);
let label = span_label.of(self.input.src);
self.input.span = Span::new(self.input.span.start(), span_label.end() + 1);
return self.push(EventKind::Atom(FootnoteReference { label }));
}
}
None
@ -1588,7 +1588,7 @@ mod test {
test_parse!(
"text[^footnote]. more text",
(Str, "text"),
(Atom(FootnoteReference), "footnote"),
(Atom(FootnoteReference { label: "footnote" }), "[^footnote]"),
(Str, ". more text"),
);
}

View file

@ -836,9 +836,7 @@ impl<'s> Parser<'s> {
}
}
inline::EventKind::Atom(a) => match a {
inline::Atom::FootnoteReference => {
Event::FootnoteReference(inline.span.of(self.src))
}
inline::Atom::FootnoteReference { label } => Event::FootnoteReference(label),
inline::Atom::Symbol => Event::Symbol(inline.span.of(self.src).into()),
inline::Atom::Quote { ty, left } => match (ty, left) {
(inline::QuoteType::Single, true) => Event::LeftSingleQuote,