use crate::kind::NoteSyntaxKind;
use oak_core::Language;
#[derive(Debug)]
pub struct NotedownLanguage {
pub xml_call: bool,
}
impl Language for NotedownLanguage {
type SyntaxKind = NoteSyntaxKind;
type TypedRoot = (); }
impl Default for NotedownLanguage {
fn default() -> Self {
Self { xml_call: false }
}
}