1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use crate::{
    Parse,
    ParseError,
};

#[derive(Default, Clone, Debug, PartialEq)]
pub enum HighlightMode {
    #[default]
    /// Highlight considering the actual measure text bounds.
    Fit,
    /// Highlight considering the `paragraph` element bounds.
    Expanded,
}

impl Parse for HighlightMode {
    fn parse(value: &str) -> Result<Self, ParseError> {
        match value {
            "expanded" => Ok(HighlightMode::Expanded),
            _ => Ok(HighlightMode::Fit),
        }
    }
}