notedown_ast 0.12.5

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

impl From<std::io::Error> for NoteError {
    fn from(e: std::io::Error) -> Self {
        Self { kind: Box::new(NoteErrorKind::IOError(e)), file: None, range: (0, 0) }
    }
}