notedown_ast 0.16.3

Notedown Abstract Syntax Tree
Documentation
1
2
3
4
5
6
7
8
/// # EmailLink
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
pub struct EmailLink {
    /// Whether this email link is bare
    pub is_bare: bool,
    /// Name of the email link
    pub text: String,
}