fixup! parser: impl link references
This commit is contained in:
parent
412067a190
commit
ce6447476c
1 changed files with 3 additions and 1 deletions
|
@ -265,10 +265,12 @@ impl<'s> Container<'s> {
|
||||||
|
|
||||||
pub struct Parser<'s> {
|
pub struct Parser<'s> {
|
||||||
src: &'s str,
|
src: &'s str,
|
||||||
|
|
||||||
tree: tree::Branch<block::Node, block::Atom>,
|
tree: tree::Branch<block::Node, block::Atom>,
|
||||||
|
link_definitions: std::collections::HashMap<&'s str, CowStr<'s>>,
|
||||||
|
|
||||||
inlines: span::InlineSpans<'s>,
|
inlines: span::InlineSpans<'s>,
|
||||||
inline_parser: Option<inline::Parser<span::InlineCharsIter<'s>>>,
|
inline_parser: Option<inline::Parser<span::InlineCharsIter<'s>>>,
|
||||||
link_definitions: std::collections::HashMap<&'s str, CowStr<'s>>,
|
|
||||||
|
|
||||||
_tree_data: block::Tree,
|
_tree_data: block::Tree,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue