aboutsummaryrefslogblamecommitdiffstats
path: root/src/content/text.rs
blob: 57186172bca003ccc337f251cbbb7c2fa99b0e95 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                                                            
                                              
                 
                                                  

                                                                      
                                                  





                                                                    
                                                                             
                                                                                     

                                                                                     

                                                                                 
  

                                                              
                            
                                              
                                            

                                                
                                           
                                                                
                                    

                                    












                                                                      

                                 
                                   
                                           

                                              

                                              
                                    


                                            
              

                                                                


     
            




                                                                        
                                                                             
 
//! The text content type.
//!
//! **Text** contains phrasing content such as attention (emphasis, strong),
//! media (links, images), and actual text.
//!
//! The constructs found in text are:
//!
//! *   [Autolink][crate::construct::autolink]
//! *   Attention
//! *   [HTML (text)][crate::construct::html_text]
//! *   [Hard break (escape)][crate::construct::hard_break_escape]
//! *   [Hard break (trailing)][crate::construct::hard_break_trailing]
//! *   [Code (text)][crate::construct::code_text]
//! *   Label start (image)
//! *   Label start (link)
//! *   [Character escape][crate::construct::character_escape]
//! *   [Character reference][crate::construct::character_reference]

use crate::construct::{
    autolink::start as autolink, character_escape::start as character_escape,
    character_reference::start as character_reference, code_text::start as code_text,
    hard_break_escape::start as hard_break_escape,
    hard_break_trailing::start as hard_break_trailing, html_text::start as html_text,
    label_end::start as label_end, label_start_image::start as label_start_image,
    label_start_link::start as label_start_link, partial_data::start as data,
};
use crate::tokenizer::{Code, State, StateFnResult, Tokenizer};

const MARKERS: [Code; 8] = [
    Code::Char(' '),  // `hard_break_trailing`
    Code::Char('!'),  // `label_start_image`
    Code::Char('&'),  // `character_reference`
    Code::Char('<'),  // `autolink`, `html_text`
    Code::Char('['),  // `label_start_link`
    Code::Char('\\'), // `character_escape`, `hard_break_escape`
    Code::Char(']'),  // `label_end`
    Code::Char('`'),  // `code_text`
];

/// Before text.
///
/// First we assume character reference.
///
/// ```markdown
/// |&amp;
/// |\&
/// |qwe
/// ```
pub fn start(tokenizer: &mut Tokenizer, code: Code) -> StateFnResult {
    match code {
        Code::None => (State::Ok, None),
        _ => tokenizer.attempt_n(
            vec![
                Box::new(autolink),
                Box::new(character_escape),
                Box::new(character_reference),
                Box::new(code_text),
                Box::new(hard_break_escape),
                Box::new(hard_break_trailing),
                Box::new(html_text),
                Box::new(label_end),
                Box::new(label_start_image),
                Box::new(label_start_link),
            ],
            |ok| Box::new(if ok { start } else { before_data }),
        )(tokenizer, code),
    }
}

/// At data.
///
/// ```markdown
/// |qwe
/// ```
fn before_data(tokenizer: &mut Tokenizer, code: Code) -> StateFnResult {
    tokenizer.go(|t, c| data(t, c, MARKERS.to_vec()), start)(tokenizer, code)
}