notedown_ast 0.13.5

notedown ast and converter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::*;

/// ## Two-way link
/// This means this link will create a reference on the opposite side
/// ```note
/// [[link]]
/// [[link > id]]
/// ```
#[derive(Clone, Debug, Eq, PartialEq, Hash)]
pub struct TwoWayLink {
    link: String,
    id: Option<String>,
}