notedown_ast 0.5.2

notedown ast and converter
Documentation
1
2
3
4
5
6
7
use crate::Value;

impl<'a> From<String> for Value<'a> {
    fn from(s: String) -> Self {
        Value::String(s.into())
    }
}