notedown_ast 0.13.5

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

#[derive(Clone, Debug, Eq, PartialEq, Hash)]
pub enum ListView {
    QuoteList { style: String, body: ASTNodes },
    OrderedList { head: usize, body: ASTNodes },
    OrderlessList { body: ASTNodes },
    Details { summary: ASTNodes, body: ASTNodes },
}