1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
use super::*; /// ````md /// ```cmd(arg=1) /// body text /// ``` /// ```` #[derive(Clone, Eq, PartialEq)] pub struct EscapedCommand { pub cmd: String, pub level: u8, pub start: usize, pub end: usize, pub options: CommandOptions, pub pattern: CommandPattern, pub body: Literal<String>, }