aboutsummaryrefslogblamecommitdiffstats
path: root/src/parser.rs
blob: 0f71daf83bb6bad5b9c1505a051510ba2557faff (plain) (tree)
1
2
3
4
5
6
7
                                          
 
                                       

                                             
                                 
 




                                                                    

                                   
                      
                         
                                   
                                 

 
                                          
   
                                                                
                                                                                     
                                      
                                        
                                  
                            

      
                          
                         



                      
                     
          
      
 
                         
 
//! Turn a string of markdown into events.

use crate::content::document::document;
use crate::tokenizer::{Code, Event, Point};
use crate::util::codes::parse as parse_codes;
use crate::{Constructs, Options};

/// Information needed, in all content types, when parsing markdown.
///
/// Importantly, this contains a set of known definitions.
/// It also references the input value as [`Code`][]s.
#[derive(Debug)]
pub struct ParseState<'a> {
    pub constructs: &'a Constructs,
    /// List of codes.
    pub codes: Vec<Code>,
    /// Set of defined identifiers.
    pub definitions: Vec<String>,
}

/// Turn a string of markdown into events.
///
/// Passes the codes back so the compiler can access the source.
pub fn parse<'a>(value: &str, options: &'a Options) -> (Vec<Event>, ParseState<'a>) {
    let mut parse_state = ParseState {
        constructs: &options.constructs,
        codes: parse_codes(value),
        definitions: vec![],
    };

    let events = document(
        &mut parse_state,
        Point {
            line: 1,
            column: 1,
            offset: 0,
            index: 0,
        },
    );

    (events, parse_state)
}