notedown_ast 0.14.13

Notedown Abstract Syntax Tree
Documentation
1
2
3
4
5
6
7
8
use crate::NoteError;
use globset::Error;

impl From<Error> for NoteError {
    fn from(e: Error) -> Self {
        NoteError::runtime_error(e.to_string())
    }
}