pub struct MarkdownParser;Expand description
A parser for Markdown documents with Pandoc-style citation syntax.
This parser currently supports inline prose citations and maps them into the shared document-processing pipeline. Markdown-specific footnotes, document metadata, and inline bibliography blocks remain future work.
Trait Implementations§
Source§impl CitationParser for MarkdownParser
impl CitationParser for MarkdownParser
Source§fn parse_document(&self, content: &str, locale: &Locale) -> ParsedDocument
fn parse_document(&self, content: &str, locale: &Locale) -> ParsedDocument
Parse the document into citation placements and note metadata.
Auto Trait Implementations§
impl Freeze for MarkdownParser
impl RefUnwindSafe for MarkdownParser
impl Send for MarkdownParser
impl Sync for MarkdownParser
impl Unpin for MarkdownParser
impl UnsafeUnpin for MarkdownParser
impl UnwindSafe for MarkdownParser
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more