notedown_ast 0.14.13

Notedown Abstract Syntax Tree
Documentation
1
2
3
4
5
6
7
8
use super::*;

impl Display for QuoteBlock {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        writeln!(f, "< quote>")?;
        writeln!(f, "</quote>")
    }
}