1
2
3
4
5
6
7
8
9
10
/// Indicates if the snippet should be HTML encoded.
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum Encoder {
    /// No encoding
    Default,

    /// HTML-escape the snippet text and then insert the highlighting tags
    Html,
}