#[derive(Clone, Debug, Eq, PartialEq, Hash)]pubstructTagReference{/// ## Tag Block
/// ```note
/// [^tag]: text text text
/// [^tag]:
/// text text text
/// text text text
/// ```
pubinline:bool,
/// ## Tag Reference
/// Quote a number, note that the name is irrelevant, and a number will always be generated in sequence at the end
/// ```note
/// text [^tag] text text text
/// ```
pubtag: String,
/// ## Tag Inline
/// Quote a number while defining
/// ```note
/// text [^tag][text text text] text
/// ```
pubtext:Vec<String>,
}